Home
last modified time | relevance | path

Searched refs:status (Results 101 – 125 of 370) sorted by relevance

12345678910>>...15

/php-src/ext/pdo_pgsql/
H A Dpgsql_statement.c139 ExecStatusType status; in pgsql_stmt_execute() local
165 status = PQresultStatus(S->result); in pgsql_stmt_execute()
166 if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) { in pgsql_stmt_execute()
190 switch (status) { in pgsql_stmt_execute()
242 status = PQresultStatus(S->result); in pgsql_stmt_execute()
244 if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) { in pgsql_stmt_execute()
254 if (status == PGRES_COMMAND_OK) { in pgsql_stmt_execute()
430 ExecStatusType status; in pgsql_stmt_fetch() local
454 if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK) { in pgsql_stmt_fetch()
612 ExecStatusType status; in pgsql_stmt_get_column_meta() local
[all …]
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Delement.c92 lxb_status_t status; in lxb_dom_element_interface_copy() local
97 if (status != LXB_STATUS_OK) { in lxb_dom_element_interface_copy()
98 return status; in lxb_dom_element_interface_copy()
165 lxb_status_t status; in lxb_dom_element_create() local
211 if (status != LXB_STATUS_OK) { in lxb_dom_element_create()
253 lxb_status_t status; in lxb_dom_element_set_attribute() local
283 if (status != LXB_STATUS_OK) { in lxb_dom_element_set_attribute()
288 if (status != LXB_STATUS_OK) { in lxb_dom_element_set_attribute()
320 lxb_status_t status; in lxb_dom_element_remove_attribute() local
329 if (status != LXB_STATUS_OK) { in lxb_dom_element_remove_attribute()
[all …]
H A Dcharacter_data.c70 lxb_status_t status; in lxb_dom_character_data_interface_copy() local
72 status = lxb_dom_node_interface_copy(&dst->node, &src->node, false); in lxb_dom_character_data_interface_copy()
73 if (status != LXB_STATUS_OK) { in lxb_dom_character_data_interface_copy()
74 return status; in lxb_dom_character_data_interface_copy()
H A Dprocessing_instruction.c34 lxb_status_t status; in lxb_dom_processing_instruction_interface_clone() local
42 status = lxb_dom_processing_instruction_copy(new, pinstr); in lxb_dom_processing_instruction_interface_clone()
43 if (status != LXB_STATUS_OK) { in lxb_dom_processing_instruction_interface_clone()
H A Ddocument.c78 lxb_status_t status; in lxb_dom_document_init() local
122 status = lexbor_mraw_init(document->mraw, (4096 * 8)); in lxb_dom_document_init()
124 if (status != LXB_STATUS_OK) { in lxb_dom_document_init()
130 status = lexbor_mraw_init(document->text, (4096 * 12)); in lxb_dom_document_init()
132 if (status != LXB_STATUS_OK) { in lxb_dom_document_init()
138 if (status != LXB_STATUS_OK) { in lxb_dom_document_init()
144 if (status != LXB_STATUS_OK) { in lxb_dom_document_init()
149 status = lexbor_hash_init(document->prefix, 128, in lxb_dom_document_init()
151 if (status != LXB_STATUS_OK) { in lxb_dom_document_init()
156 status = lexbor_hash_init(document->attrs, 128, in lxb_dom_document_init()
[all …]
/php-src/ext/zip/examples/
H A DextractAll.php10 echo $zip->status . "\n";
19 echo $zip->status . "\n";
H A Dextract.php14 echo $zip->status . "\n";
23 echo $zip->status . "\n";
/php-src/sapi/fpm/tests/
H A Dbug64539-status-json-encoding.phpt2 FPM: bug64539 - status json format escaping
18 pm.status_path = /status
33 ['uri' => '/status', 'query' => 'full&json', 'delay' => 100000],
H A Dproc-idle-timeout.phpt22 pm.status_path = /status
34 $tester->status([
39 $tester->status([
H A Dresponse.inc152 * Expect that one of the processes in json status process list has a field with value that
166 "The body data is not a valid status json containing processes field '$rawData'"
257 * Expect response status.
259 * @param string|null $status Expected status.
263 public function expectStatus(string|null $status): Response {
265 if (is_null($status) && !isset($headers['status'])) {
268 if (!is_null($status) && !isset($headers['status'])) {
270 } elseif ($status !== $headers['status']) {
271 $statusMessage = $status === null ? "expected not to be set": "expected to be $status";
272 $this->error("Status is $statusMessage but the actual value is {$headers['status']}");
[all …]
/php-src/ext/standard/tests/streams/
H A Dbug64433_srv.inc10 if(!empty($_REQUEST["status"])) {
11 http_response_code($_REQUEST["status"]);
/php-src/ext/intl/
H A Dintl_convertcpp.h27 int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status);
29 zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status);
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Din_select.c21 tree->status = lxb_html_token_make_text_drop_null(token, &str, in lxb_html_tree_insertion_mode_in_select_text()
25 tree->status = lxb_html_token_make_text(token, &str, in lxb_html_tree_insertion_mode_in_select_text()
29 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_select_text()
40 tree->status = lxb_html_tree_insert_character_for_data(tree, &str, NULL); in lxb_html_tree_insertion_mode_in_select_text()
41 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_select_text()
56 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_select_comment()
93 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_select_option()
120 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_select_optgroup()
/php-src/ext/pcntl/tests/
H A Dbug47566.phpt12 $epid = pcntl_waitpid(-1,$status);
13 var_dump(pcntl_wexitstatus($status));
/php-src/sapi/cli/tests/
H A Dsapi_windows_set_ctrl_handler.phpt56 $status = proc_get_status($proc);
57 if ($status["running"]) {
64 echo "Child $child_pid exit with status ", $status["exitcode"], " after {$total}us\n";
86 Child %d exit with status 3 after %dus
/php-src/ext/standard/tests/file/
H A Dbug26938.phpt6 $status = -1;
14 . '}\'', $out, $status);
21 . '}"', $out, $status);
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Delement.c210 lxb_status_t status; in lxb_html_element_style_walk_cb() local
218 if (status != LXB_STATUS_OK) { in lxb_html_element_style_walk_cb()
219 return status; in lxb_html_element_style_walk_cb()
227 if (status != LXB_STATUS_OK) { in lxb_html_element_style_walk_cb()
228 return status; in lxb_html_element_style_walk_cb()
251 return css->parser->status; in lxb_html_element_style_parse()
268 lxb_status_t status; in lxb_html_element_style_append() local
299 if (status != LXB_STATUS_OK) { in lxb_html_element_style_append()
300 return status; in lxb_html_element_style_append()
383 lxb_status_t status; in lxb_html_element_style_list_append() local
[all …]
/php-src/ext/mysqli/tests/functions/
H A Dmysqli_stat.phpt16 $status = mysqli_stat($link);
18 var_dump(strlen($status) > 0);
/php-src/ext/opcache/tests/
H A D001_cli.phpt12 $status = opcache_get_status();
15 var_dump($status["opcache_enabled"]);
/php-src/Zend/
H A Dzend_fibers.c378 if (from->status == ZEND_FIBER_STATUS_DEAD) { in zend_fiber_trampoline()
385 context->status = ZEND_FIBER_STATUS_DEAD; in zend_fiber_trampoline()
450 context->status = ZEND_FIBER_STATUS_INIT; in zend_fiber_init_context()
492 to->status = ZEND_FIBER_STATUS_RUNNING; in zend_fiber_switch_context()
494 if (EXPECTED(from->status == ZEND_FIBER_STATUS_RUNNING)) { in zend_fiber_switch_context()
495 from->status = ZEND_FIBER_STATUS_SUSPENDED; in zend_fiber_switch_context()
541 if (to->status == ZEND_FIBER_STATUS_DEAD) { in zend_fiber_switch_context()
828 if (fiber->context.status != ZEND_FIBER_STATUS_INIT) { in ZEND_METHOD()
870 …ZEND_ASSERT(fiber->context.status == ZEND_FIBER_STATUS_RUNNING || fiber->context.status == ZEND_FI… in ZEND_METHOD()
989 if (fiber->context.status == ZEND_FIBER_STATUS_DEAD) { in ZEND_METHOD()
[all …]
/php-src/ext/mbstring/ucgendat/
H A Ductest.php102 $status = $fields[1];
103 if ($status == 'C' || $status == 'S') {
106 } else if ($status == 'F') {
/php-src/ext/dom/lexbor/lexbor/dom/
H A Dcollection.h43 lxb_status_t status; in lxb_dom_collection_make() local
47 status = lxb_dom_collection_init(col, start_list_size); in lxb_dom_collection_make()
49 if(status != LXB_STATUS_OK) { in lxb_dom_collection_make()
/php-src/ext/standard/
H A Ddns_win32.c49 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
56 status = DnsQuery_A(hostname, DNS_TYPE_MX, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
58 if (status) { in PHP_FUNCTION()
103 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
134 status = DnsQuery_A(hostname, type, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
136 if (status) { in PHP_FUNCTION()
408 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
464 status = DnsQuery_A(hostname, type_to_fetch, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
466 if (status) { in PHP_FUNCTION()
467 if (status == DNS_INFO_NO_RECORDS || status == DNS_ERROR_RCODE_NAME_ERROR) { in PHP_FUNCTION()
/php-src/ext/zend_test/
H A Dobject_handlers.c84 zend_result status; in donc_do_operation() local
94 if (UNEXPECTED(EG(exception))) { status = FAILURE; } in donc_do_operation()
95 status = SUCCESS; in donc_do_operation()
99 if (UNEXPECTED(EG(exception))) { status = FAILURE; } in donc_do_operation()
100 status = SUCCESS; in donc_do_operation()
103 status = FAILURE; in donc_do_operation()
107 if (status == SUCCESS && op1 == &op1_copy) { in donc_do_operation()
111 return status; in donc_do_operation()
/php-src/ext/intl/collator/
H A Dcollator_convert.h22 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status );
23 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status );

Completed in 62 milliseconds

12345678910>>...15