Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/php-src/ext/mysqlnd/
H A Dmysqlnd_connection.h28 #define UPSERT_STATUS_RESET(status) (status)->m->reset((status)) argument
30 #define UPSERT_STATUS_GET_SERVER_STATUS(status) (status)->server_status argument
31 #define UPSERT_STATUS_SET_SERVER_STATUS(status, server_st) (status)->server_status = (server_st) argument
33 #define UPSERT_STATUS_GET_WARNINGS(status) (status)->warning_count argument
34 #define UPSERT_STATUS_SET_WARNINGS(status, warnings) (status)->warning_count = (warnings) argument
36 #define UPSERT_STATUS_GET_AFFECTED_ROWS(status) (status)->affected_rows argument
37 #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows) argument
38 #define UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(status) (status)->m->set_affected_rows_to_error((s… argument
40 #define UPSERT_STATUS_GET_LAST_INSERT_ID(status) (status)->last_insert_id argument
41 #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id) (status)->last_insert_id = (id) argument
/php-src/ext/intl/
H A Dintl_convert.c51 UErrorCode* status ) in intl_convert_utf8_to_utf16() argument
60 *status = U_ZERO_ERROR; in intl_convert_utf8_to_utf16()
82 if( *status != U_BUFFER_OVERFLOW_ERROR && *status != U_STRING_NOT_TERMINATED_WARNING ) in intl_convert_utf8_to_utf16()
89 *status = U_ZERO_ERROR; in intl_convert_utf8_to_utf16()
91 if( U_FAILURE( *status ) ) in intl_convert_utf8_to_utf16()
118 UErrorCode* status ) in intl_convert_utf16_to_utf8() argument
124 *status = U_ZERO_ERROR; in intl_convert_utf16_to_utf8()
131 if( *status != U_BUFFER_OVERFLOW_ERROR && *status != U_STRING_NOT_TERMINATED_WARNING ) in intl_convert_utf16_to_utf8()
138 *status = U_ZERO_ERROR; in intl_convert_utf16_to_utf8()
140 if( U_FAILURE( *status ) ) in intl_convert_utf16_to_utf8()
[all …]
H A Dintl_convertcpp.cpp24 int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status) in intl_stringFromChar() argument
27 *status = U_BUFFER_OVERFLOW_ERROR; in intl_stringFromChar()
38 *status = U_ZERO_ERROR; in intl_stringFromChar()
41 status); in intl_stringFromChar()
43 if (U_FAILURE(*status)) { in intl_stringFromChar()
55 zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status) in intl_charFromString() argument
76 U_SENTINEL, NULL, status); in intl_charFromString()
78 if (U_FAILURE(*status)) { in intl_charFromString()
/php-src/ext/intl/grapheme/
H A Dgrapheme_util.c90 if ( U_FAILURE( (status) ) ) { \
105 UErrorCode status; in grapheme_strpos_utf16() local
113 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
117 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
122 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
125 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
140 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
146 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
159 status = U_ZERO_ERROR; in grapheme_strpos_utf16()
240 if( U_FAILURE(status) ) { in grapheme_split_string()
[all …]
/php-src/ext/intl/normalizer/
H A Dnormalizer_normalize.c90 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
135 if( U_FAILURE( status ) ) in PHP_FUNCTION()
138 intl_error_set_code( NULL, status ); in PHP_FUNCTION()
164 …if( U_FAILURE(status) && status != U_BUFFER_OVERFLOW_ERROR && status != U_STRING_NOT_TERMINATED_WA… in PHP_FUNCTION()
179 status = U_ZERO_ERROR; in PHP_FUNCTION()
189 if( U_FAILURE(status) ) { in PHP_FUNCTION()
208 intl_error_set( NULL, status, in PHP_FUNCTION()
228 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
263 if( U_FAILURE( status ) ) in PHP_FUNCTION()
287 if( U_FAILURE(status) ) { in PHP_FUNCTION()
[all …]
/php-src/ext/pcntl/tests/
H A Dpcntl_wait.phpt12 $status = 0;
13 pcntl_wait($status, WUNTRACED);
14 var_dump(pcntl_wifexited($status));
17 pcntl_wait($status);
18 var_dump(pcntl_wifsignaled($status));
19 var_dump(pcntl_wifstopped($status));
20 var_dump(pcntl_wexitstatus($status));
22 var_dump(pcntl_wait($status, WNOHANG | WUNTRACED));
H A D001.phpt23 pcntl_waitpid($pid, $status, $options);
24 if ( pcntl_wifexited($status) ) print "\nExited With: ". pcntl_wexitstatus($status);
39 pcntl_waitpid($pid, $status, $options);
40 if ( pcntl_wifsignaled($status) ) {
41 $signal_print=pcntl_wtermsig($status);
61 pcntl_waitpid($pid, $status, $options);
62 if ( pcntl_wifstopped($status) ) {
63 $signal_print=pcntl_wstopsig($status);
/php-src/ext/dom/lexbor/lexbor/html/
H A Dparser.c42 if (status != LXB_STATUS_OK) { in lxb_html_parser_init()
43 return status; in lxb_html_parser_init()
50 if (status != LXB_STATUS_OK) { in lxb_html_parser_init()
51 return status; in lxb_html_parser_init()
129 if (parser->status != LXB_STATUS_OK) { in lxb_html_parse()
194 return parser->status; in lxb_html_parse_fragment_chunk_begin()
275 return parser->status; in lxb_html_parse_fragment_chunk_begin()
296 return parser->status; in lxb_html_parse_fragment_chunk_process()
371 return parser->status; in lxb_html_parse_chunk_prepare()
414 return parser->status; in lxb_html_parse_chunk_process()
[all …]
H A Dtokenizer.c47 lxb_status_t status; in lxb_html_tokenizer_init() local
57 return status; in lxb_html_tokenizer_init()
67 return status; in lxb_html_tokenizer_init()
75 return status; in lxb_html_tokenizer_init()
83 return status; in lxb_html_tokenizer_init()
108 tkz->status = LXB_STATUS_OK; in lxb_html_tokenizer_init()
120 lxb_status_t status; in lxb_html_tokenizer_inherit() local
138 return status; in lxb_html_tokenizer_inherit()
340 return tkz->status; in lxb_html_tokenizer_chunk()
363 return tkz->status; in lxb_html_tokenizer_end()
[all …]
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c124 lxb_status_t status; in lxb_html_document_interface_create() local
213 lxb_status_t status;
286 return status;
437 return status; in lxb_html_document_stylesheet_attach()
735 return status; in lxb_html_document_parse()
749 return status; in lxb_html_document_parse_chunk_begin()
818 return status; in lxb_html_document_parse_fragment_chunk_begin()
938 return status; in lxb_html_document_title_set()
1142 return status;
1205 return status;
[all …]
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c148 filter->status = 0; in mbfl_filt_conv_html_enc_flush()
166 filter->status = 0; in mbfl_filt_conv_html_dec_ctor()
172 filter->status = 0; in mbfl_filt_conv_html_dec_dtor()
187 if (!filter->status) { in mbfl_filt_conv_html_dec()
189 filter->status = 1; in mbfl_filt_conv_html_dec()
246 filter->status = 0; in mbfl_filt_conv_html_dec()
286 filter->status--; in mbfl_filt_conv_html_dec()
309 int status, pos = 0; in mbfl_filt_conv_html_dec_flush() local
314 status = filter->status; in mbfl_filt_conv_html_dec_flush()
315 filter->status = 0; in mbfl_filt_conv_html_dec_flush()
[all …]
H A Dmbfilter_base64.c97 filter->status++; in mbfl_filt_conv_base64enc()
100 filter->status++; in mbfl_filt_conv_base64enc()
125 status = filter->status & 0xff; in mbfl_filt_conv_base64enc_flush()
131 if (status >= 1) { in mbfl_filt_conv_base64enc_flush()
138 if (status == 1) { in mbfl_filt_conv_base64enc_flush()
184 filter->status = 1; in mbfl_filt_conv_base64dec()
209 int status, cache; in mbfl_filt_conv_base64dec_flush() local
211 status = filter->status; in mbfl_filt_conv_base64dec_flush()
213 filter->status = 0; in mbfl_filt_conv_base64dec_flush()
216 if (status >= 2) { in mbfl_filt_conv_base64dec_flush()
[all …]
H A Dmbfilter_qprint.c87 filter->status++; in mbfl_filt_conv_qprintenc()
188 filter->status = 2; in mbfl_filt_conv_qprintdec()
190 filter->status = 3; in mbfl_filt_conv_qprintdec()
192 filter->status = 0; in mbfl_filt_conv_qprintdec()
196 filter->status = 0; in mbfl_filt_conv_qprintdec()
209 filter->status = 0; in mbfl_filt_conv_qprintdec()
215 filter->status = 0; in mbfl_filt_conv_qprintdec()
231 int status, cache; in mbfl_filt_conv_qprintdec_flush() local
233 status = filter->status; in mbfl_filt_conv_qprintdec_flush()
235 filter->status = 0; in mbfl_filt_conv_qprintdec_flush()
[all …]
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_connection_status.phpt15 $status = $db->getAttribute(PDO::ATTR_CONNECTION_STATUS);
16 if (!is_string($status))
17 printf("[002] Expecting string, got '%s'\n", var_export($status, true));
19 if ('' == $status)
20 printf("[003] Connection status string must not be empty\n");
22 if (false !== $db->setAttribute(PDO::ATTR_CONNECTION_STATUS, 'my own connection status'))
26 if ($status !== $status2)
27 printf("[005] Connection status should not have changed\n");
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Dbefore_html.c69 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_before_html_open()
78 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_before_html_open()
90 tree->status = lxb_html_token_data_skip_ws_begin(token); in lxb_html_tree_insertion_mode_before_html_open()
91 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_before_html_open()
134 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_before_html_anything_else()
138 tree->status = lxb_html_tree_insertion_mode_before_html_html(tree, in lxb_html_tree_insertion_mode_before_html_anything_else()
140 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_before_html_anything_else()
153 lxb_status_t status; in lxb_html_tree_insertion_mode_before_html_html() local
155 status = lxb_html_tree_open_elements_push(tree, node_html); in lxb_html_tree_insertion_mode_before_html_html()
156 if (status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_before_html_html()
[all …]
H A Din_template.c22 tree->status = lxb_html_tree_template_insertion_push(tree, in lxb_html_tree_insertion_mode_in_template_ct()
24 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_template_ct()
39 tree->status = lxb_html_tree_template_insertion_push(tree, in lxb_html_tree_insertion_mode_in_template_col()
41 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_template_col()
56 tree->status = lxb_html_tree_template_insertion_push(tree, in lxb_html_tree_insertion_mode_in_template_tr()
58 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_template_tr()
76 tree->status = lxb_html_tree_template_insertion_push(tree, in lxb_html_tree_insertion_mode_in_template_tdth()
78 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_template_tdth()
96 tree->status = lxb_html_tree_stop_parsing(tree); in lxb_html_tree_insertion_mode_in_template_end_of_file()
97 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_template_end_of_file()
[all …]
H A Din_head.c61 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_head_open()
184 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_head_open()
191 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_head_open()
250 tree->status = LXB_STATUS_ERROR; in lxb_html_tree_insertion_mode_in_head_script()
266 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_head_script()
273 tree->status = lxb_html_tree_open_elements_push(tree, in lxb_html_tree_insertion_mode_in_head_script()
275 if (tree->status != LXB_HTML_STATUS_OK) { in lxb_html_tree_insertion_mode_in_head_script()
306 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_head_template()
312 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_head_template()
321 tree->status = lxb_html_tree_template_insertion_push(tree, in lxb_html_tree_insertion_mode_in_head_template()
[all …]
H A Din_body.c36 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_skip_new_line()
63 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_skip_new_line_textarea()
93 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_text()
105 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_text()
117 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_text_append()
118 return tree->status; in lxb_html_tree_insertion_mode_in_body_text_append()
138 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_text_append()
139 return tree->status; in lxb_html_tree_insertion_mode_in_body_text_append()
674 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_button()
948 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_body_a()
[all …]
H A Dafter_head.c47 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_after_head_open()
69 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_after_head_open()
86 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_after_head_open()
110 tree->status = LXB_STATUS_ERROR; in lxb_html_tree_insertion_mode_after_head_open()
117 tree->status = lxb_html_tree_open_elements_push(tree, head_node); in lxb_html_tree_insertion_mode_after_head_open()
118 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_head_open()
123 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_head_open()
141 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_head_open()
146 tree->status = lxb_html_tree_insert_character(tree, &ws_token, in lxb_html_tree_insertion_mode_after_head_open()
148 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_after_head_open()
[all …]
H A Din_table_text.c19 lxb_status_t status; in lxb_html_tree_insertion_mode_in_table_text() local
31 tree->status = LXB_STATUS_ERROR_MEMORY_ALLOCATION; in lxb_html_tree_insertion_mode_in_table_text()
42 tree->status = lxb_html_token_make_text_drop_null(token, text, in lxb_html_tree_insertion_mode_in_table_text()
46 tree->status = lxb_html_token_make_text(token, text, in lxb_html_tree_insertion_mode_in_table_text()
50 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_table_text()
86 status = lxb_html_tree_insertion_mode_in_body_text_append(tree, in lxb_html_tree_insertion_mode_in_table_text()
88 if (status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_table_text()
101 tree->status = lxb_html_tree_insert_character_for_data(tree, text, in lxb_html_tree_insertion_mode_in_table_text()
103 if (tree->status != LXB_STATUS_OK) { in lxb_html_tree_insertion_mode_in_table_text()
/php-src/ext/intl/collator/
H A Dcollator_convert.c37 UErrorCode* status ) in collator_convert_hash_item_from_utf8_to_utf16() argument
54 if( U_FAILURE( *status ) ) in collator_convert_hash_item_from_utf8_to_utf16()
78 UErrorCode* status ) in collator_convert_hash_item_from_utf16_to_utf8() argument
125 if( U_FAILURE( *status ) ) in collator_convert_hash_from_utf8_to_utf16()
144 if( U_FAILURE( *status ) ) { in collator_convert_hash_from_utf16_to_utf8()
162 UErrorCode status = U_ZERO_ERROR; in collator_convert_zstr_utf16_to_utf8() local
181 UErrorCode status = U_ZERO_ERROR; in collator_convert_zstr_utf8_to_utf16() local
187 &status); in collator_convert_zstr_utf8_to_utf16()
189 if (U_FAILURE(status)) { in collator_convert_zstr_utf8_to_utf16()
235 &status ); in collator_convert_object_to_string()
[all …]
/php-src/ext/bz2/
H A Dbz2_filter.c76 int status; in php_bz2_decompress_filter() local
96 if (BZ_OK != status) { in php_bz2_decompress_filter()
125 } else if (status != BZ_OK) { in php_bz2_decompress_filter()
157 status = BZ_OK; in php_bz2_decompress_filter()
158 while (status == BZ_OK) { in php_bz2_decompress_filter()
168 } else if (status == BZ_OK) { in php_bz2_decompress_filter()
215 int status; in php_bz2_compress_filter() local
243 if (status != BZ_RUN_OK && status != BZ_FLUSH_OK && status != BZ_FINISH_OK) { in php_bz2_compress_filter()
316 int status = BZ_OK; in php_bz2_filter_create() local
391 status = BZ_DATA_ERROR; in php_bz2_filter_create()
[all …]
/php-src/ext/intl/tests/
H A Drbbiter_getRuleStatus_basic.phpt28 "rule status: {$rbbi->getRuleStatus()}\n";
34 rule status: 0
36 rule status: 1
38 rule status: 42
40 rule status: 0
42 rule status: 42
/php-src/ext/intl/dateformat/
H A Ddateformat_format_object.cpp74 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
160 date = obj_cal->getTime(status); in PHP_FUNCTION()
161 if (U_FAILURE(status)) { in PHP_FUNCTION()
162 intl_error_set(NULL, status, in PHP_FUNCTION()
175 if (U_FAILURE(status)) { in PHP_FUNCTION()
176 intl_error_set(NULL, status, in PHP_FUNCTION()
194 status); in PHP_FUNCTION()
196 if (U_FAILURE(status)) { in PHP_FUNCTION()
197 intl_error_set(NULL, status, in PHP_FUNCTION()
208 intl_error_set(NULL, status, in PHP_FUNCTION()
[all …]
/php-src/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp114 return utext_clone(fillIn, this->fText, false, true, &status); in getUText()
129 if (U_FAILURE(status)) { in setText()
133 this->fText = utext_clone(this->fText, text, false, true, &status); in setText()
234 void *stackBuffer, int32_t &bufferSize, UErrorCode &status) in createBufferClone() argument
237 if (U_FAILURE(status)) { in createBufferClone()
262 status = U_MEMORY_ALLOCATION_ERROR; in createBufferClone()
264 status = U_SAFECLONE_ALLOCATED_WARNING; in createBufferClone()
276 if (U_FAILURE(status)) { in refreshInputText()
280 status = U_ILLEGAL_ARGUMENT_ERROR; in refreshInputText()
286 if (U_FAILURE(status)) { in refreshInputText()
[all …]

Completed in 92 milliseconds

12345678910>>...15