Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 370) sorted by last modified time

12345678910>>...15

/php-src/ext/bcmath/
H A Dbcmath.c433 raise_mod_status status = bc_raisemod(bc_base, bc_expo, bc_modulus, &result, scale); in PHP_FUNCTION() local
434 switch (status) { in PHP_FUNCTION()
/php-src/ext/curl/tests/
H A Dcurl_pushfunction_trampoline.phpt41 $status = curl_multi_exec($mh, $active);
/php-src/
H A DNEWS135 . Clear output handler status flags during handler initialization. (haszi)
H A DUPGRADING393 . Output handler status flags passed to the flags parameter of ob_start
/php-src/sapi/cgi/
H A Dcgi_main.c1746 int status = 0; local
2056 if (wait(&status) >= 0) {
2066 while (wait(&status) < 0) {
2151 DWORD status; local
2154 if(!GetExitCodeProcess(kid_cgi_ps[i], &status) || status != STILL_ACTIVE) {
/php-src/ext/odbc/
H A Dphp_odbc.c255 zend_result status = zend_hash_index_del(results, res->index); in odbc_result_free() local
256 ZEND_ASSERT(status == SUCCESS); in odbc_result_free()
2673 SQLINTEGER status;
2675 rc = SQLGetConnectOption(conn->hdbc, SQL_AUTOCOMMIT, (PTR)&status);
2680 RETURN_LONG((zend_long)status);
/php-src/ext/reflection/
H A Dphp_reflection.c7144 …if (fiber == NULL || fiber->context.status == ZEND_FIBER_STATUS_INIT || fiber->context.status == Z…
7231 if (fiber == NULL || fiber->context.status == ZEND_FIBER_STATUS_DEAD) { in ZEND_METHOD()
/php-src/ext/dom/
H A Ddocument.c1592 int status = -1; in dom_document_save_xml() local
1615 status = dom_xml_serialize(ctxt, out, node, format); in dom_document_save_xml()
1616 status |= xmlOutputBufferFlush(out); in dom_document_save_xml()
1617 status |= xmlOutputBufferClose(out); in dom_document_save_xml()
1623 status = xmlNodeDump(buf, docp, node, 0, format); in dom_document_save_xml()
1655 status = dom_xml_serialize(ctxt, out, (xmlNodePtr) docp, format); in dom_document_save_xml()
1656 status |= xmlOutputBufferFlush(out); in dom_document_save_xml()
1657 status |= xmlOutputBufferClose(out); in dom_document_save_xml()
1662 status = xmlSaveDoc(ctxt, docp); in dom_document_save_xml()
1666 if (UNEXPECTED(status < 0)) { in dom_document_save_xml()
H A Dhtml5_parser.c315 lexbor_libxml2_bridge_status status = lexbor_libxml2_bridge_convert( in lexbor_libxml2_bridge_convert_document() local
322 if (status != LEXBOR_LIBXML2_BRIDGE_STATUS_OK) { in lexbor_libxml2_bridge_convert_document()
324 return status; in lexbor_libxml2_bridge_convert_document()
/php-src/Zend/
H A Dzend_inheritance.c61 inheritance_status status);
605 inheritance_status status; in zend_is_intersection_subtype_of_type() local
622 return status; in zend_is_intersection_subtype_of_type()
682 return status; in zend_perform_covariant_type_check()
710 return status; in zend_perform_covariant_type_check()
842 return status; in zend_do_perform_implementation_check()
857 return status; in zend_do_perform_implementation_check()
1075 ZEND_ASSERT(status == INHERITANCE_ERROR || status == INHERITANCE_WARNING); in perform_delayable_implementation_check()
3274 return status; in zend_can_early_bind()
3292 return status; in zend_can_early_bind()
[all …]
H A Dzend_builtin_functions.c139 zend_gc_status status; in ZEND_FUNCTION() local
143 zend_gc_get_status(&status); in ZEND_FUNCTION()
147 add_assoc_bool_ex(return_value, "running", sizeof("running")-1, status.active); in ZEND_FUNCTION()
148 add_assoc_bool_ex(return_value, "protected", sizeof("protected")-1, status.gc_protected); in ZEND_FUNCTION()
149 add_assoc_bool_ex(return_value, "full", sizeof("full")-1, status.full); in ZEND_FUNCTION()
150 add_assoc_long_ex(return_value, "runs", sizeof("runs")-1, (long)status.runs); in ZEND_FUNCTION()
151 add_assoc_long_ex(return_value, "collected", sizeof("collected")-1, (long)status.collected); in ZEND_FUNCTION()
152 add_assoc_long_ex(return_value, "threshold", sizeof("threshold")-1, (long)status.threshold); in ZEND_FUNCTION()
153 add_assoc_long_ex(return_value, "buffer_size", sizeof("buffer_size")-1, (long)status.buf_size); in ZEND_FUNCTION()
154 add_assoc_long_ex(return_value, "roots", sizeof("roots")-1, (long)status.num_roots); in ZEND_FUNCTION()
[all …]
/php-src/ext/pcntl/
H A Dpcntl.c312 int status; in PHP_FUNCTION() local
326 status = zval_get_long(z_status); in PHP_FUNCTION()
354 ZEND_TRY_ASSIGN_REF_LONG(z_status, status); in PHP_FUNCTION()
365 int status; in PHP_FUNCTION() local
378 status = zval_get_long(z_status); in PHP_FUNCTION()
389 child_id = wait3(&status, options, NULL); in PHP_FUNCTION()
391 child_id = wait(&status); in PHP_FUNCTION()
394 child_id = wait(&status); in PHP_FUNCTION()
861 if (!status) { in PHP_FUNCTION()
909 if (!status) { in PHP_FUNCTION()
[all …]
H A Dpcntl.stub.php925 * @param int $status
928 function pcntl_waitpid(int $process_id, &$status, int $flags = 0, &$resource_usage = []): int {} argument
931 * @param int $status
934 function pcntl_wait(&$status, int $flags = 0, &$resource_usage = []): int {} argument
959 function pcntl_wifexited(int $status): bool {} argument
961 function pcntl_wifstopped(int $status): bool {} argument
964 function pcntl_wifcontinued(int $status): bool {} argument
967 function pcntl_wifsignaled(int $status): bool {} argument
969 function pcntl_wexitstatus(int $status): int|false {} argument
971 function pcntl_wtermsig(int $status): int|false {} argument
[all …]
H A Dpcntl_arginfo.h9 ZEND_ARG_INFO(1, status)
15 ZEND_ARG_INFO(1, status)
58 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
65 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
72 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
/php-src/ext/pgsql/
H A Dpgsql.c984 ExecStatusType status; in PHP_FUNCTION() local
1026 switch (status) { in PHP_FUNCTION()
1077 ExecStatusType status; in PHP_FUNCTION() local
1147 switch (status) { in PHP_FUNCTION()
1182 ExecStatusType status; in PHP_FUNCTION() local
1225 switch (status) { in PHP_FUNCTION()
1263 ExecStatusType status; in PHP_FUNCTION() local
1332 switch (status) { in PHP_FUNCTION()
3091 switch (status) { in PHP_FUNCTION()
3187 switch (status) { in PHP_FUNCTION()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc10212 ctx->status = IR_ERROR_FIXED_STACK_FRAME_OVERFLOW;
10642 ctx->status = IR_ERROR_UNSUPPORTED_CODE_RULE;
10707 if (ctx->status) {
10718 ctx->status = IR_ERROR_LINK;
10728 ctx->status = IR_ERROR_CODE_MEM_OVERFLOW;
10737 ctx->status = IR_ERROR_CODE_MEM_OVERFLOW;
10756 ctx->status = IR_ERROR_ENCODE;
H A Dir_aarch64.dasc5850 ctx->status = IR_ERROR_FIXED_STACK_FRAME_OVERFLOW;
6135 ctx->status = IR_ERROR_UNSUPPORTED_CODE_RULE;
6225 if (ctx->status) {
6236 ctx->status = IR_ERROR_LINK;
6246 ctx->status = IR_ERROR_CODE_MEM_OVERFLOW;
6255 ctx->status = IR_ERROR_CODE_MEM_OVERFLOW;
6281 ctx->status = IR_ERROR_ENCODE;
H A Dir.h579 …int32_t status; /* non-zero error code (see IR_ERROR_... macros), app … member
/php-src/ext/mbstring/
H A Dmbstring.stub.php85 function mb_output_handler(string $string, int $status): string {} argument
H A Dmbstring_arginfo.h37 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
/php-src/ext/dom/lexbor/lexbor/selectors/
H A Dselectors.h108 lxb_status_t status; member
H A Dselectors.c122 lxb_status_t status; in lxb_selectors_init() local
131 if (status != LXB_STATUS_OK) { in lxb_selectors_init()
132 return status; in lxb_selectors_init()
138 if (status != LXB_STATUS_OK) { in lxb_selectors_init()
139 return status; in lxb_selectors_init()
280 selectors->status = LXB_STATUS_OK; in lxb_selectors_find()
290 lxb_status_t status; in lxb_selectors_match_node() local
318 return status; in lxb_selectors_match_node()
333 lxb_status_t status; in lxb_selectors_state_tree() local
364 return status; in lxb_selectors_state_tree()
[all …]
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Dafter_after_body.c32 tree->status = lxb_html_tree_stop_parsing(tree); in lxb_html_tree_insertion_mode_after_after_body()
33 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_after_body()
42 tree->status = lxb_html_token_data_skip_ws_begin(&ws_token); in lxb_html_tree_insertion_mode_after_after_body()
43 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_after_body()
H A Dafter_after_frameset.c32 tree->status = lxb_html_tree_stop_parsing(tree); in lxb_html_tree_insertion_mode_after_after_frameset()
33 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_after_frameset()
45 tree->status = lxb_html_token_data_skip_ws_begin(&ws_token); in lxb_html_tree_insertion_mode_after_after_frameset()
46 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_after_frameset()
H A Dafter_body.c52 tree->status = lxb_html_tree_stop_parsing(tree); in lxb_html_tree_insertion_mode_after_body()
53 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_body()
62 tree->status = lxb_html_token_data_skip_ws_begin(&ws_token); in lxb_html_tree_insertion_mode_after_body()
63 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_body()

Completed in 165 milliseconds

12345678910>>...15