Home
last modified time | relevance | path

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

12345678910>>...13

/PHP-8.3/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-8.3/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-8.3/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-8.3/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-8.3/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-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c147 filter->status = 0; in mbfl_filt_conv_html_enc_flush()
165 filter->status = 0; in mbfl_filt_conv_html_dec_ctor()
171 filter->status = 0; in mbfl_filt_conv_html_dec_dtor()
186 if (!filter->status) { in mbfl_filt_conv_html_dec()
188 filter->status = 1; in mbfl_filt_conv_html_dec()
245 filter->status = 0; in mbfl_filt_conv_html_dec()
285 filter->status--; in mbfl_filt_conv_html_dec()
308 int status, pos = 0; in mbfl_filt_conv_html_dec_flush() local
313 status = filter->status; in mbfl_filt_conv_html_dec_flush()
314 filter->status = 0; in mbfl_filt_conv_html_dec_flush()
[all …]
H A Dmbfilter_base64.c96 filter->status++; in mbfl_filt_conv_base64enc()
99 filter->status++; in mbfl_filt_conv_base64enc()
124 status = filter->status & 0xff; in mbfl_filt_conv_base64enc_flush()
130 if (status >= 1) { in mbfl_filt_conv_base64enc_flush()
137 if (status == 1) { in mbfl_filt_conv_base64enc_flush()
183 filter->status = 1; in mbfl_filt_conv_base64dec()
208 int status, cache; in mbfl_filt_conv_base64dec_flush() local
210 status = filter->status; in mbfl_filt_conv_base64dec_flush()
212 filter->status = 0; in mbfl_filt_conv_base64dec_flush()
215 if (status >= 2) { in mbfl_filt_conv_base64dec_flush()
[all …]
H A Dmbfilter_qprint.c86 filter->status++; in mbfl_filt_conv_qprintenc()
187 filter->status = 2; in mbfl_filt_conv_qprintdec()
189 filter->status = 3; in mbfl_filt_conv_qprintdec()
191 filter->status = 0; in mbfl_filt_conv_qprintdec()
195 filter->status = 0; in mbfl_filt_conv_qprintdec()
208 filter->status = 0; in mbfl_filt_conv_qprintdec()
214 filter->status = 0; in mbfl_filt_conv_qprintdec()
230 int status, cache; in mbfl_filt_conv_qprintdec_flush() local
232 status = filter->status; in mbfl_filt_conv_qprintdec_flush()
234 filter->status = 0; in mbfl_filt_conv_qprintdec_flush()
[all …]
H A Dmbfilter_ucs4.c170 filter->status++; in mbfl_filt_conv_ucs4_wchar()
179 filter->status++; in mbfl_filt_conv_ucs4_wchar()
188 filter->status++; in mbfl_filt_conv_ucs4_wchar()
221 filter->status = 1; in mbfl_filt_conv_ucs4be_wchar()
225 filter->status = 2; in mbfl_filt_conv_ucs4be_wchar()
229 filter->status = 3; in mbfl_filt_conv_ucs4be_wchar()
233 filter->status = 0; in mbfl_filt_conv_ucs4be_wchar()
265 filter->status = 1; in mbfl_filt_conv_ucs4le_wchar()
269 filter->status = 2; in mbfl_filt_conv_ucs4le_wchar()
273 filter->status = 3; in mbfl_filt_conv_ucs4le_wchar()
[all …]
/PHP-8.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_connection_status.phpt16 $status = $db->getAttribute(PDO::ATTR_CONNECTION_STATUS);
17 if (!is_string($status))
18 printf("[002] Expecting string, got '%s'\n", var_export($status, true));
20 if ('' == $status)
21 printf("[003] Connection status string must not be empty\n");
23 if (false !== $db->setAttribute(PDO::ATTR_CONNECTION_STATUS, 'my own connection status'))
27 if ($status !== $status2)
28 printf("[005] Connection status should not have changed\n");
/PHP-8.3/ext/random/
H A Dengine_pcgoneseq128xslrr64.c38 php_random_status_state_pcgoneseq128xslrr64 *s = status->state; in seed128()
45 static void seed(php_random_status *status, uint64_t seed) in seed() argument
47 seed128(status, php_random_uint128_constant(0ULL, seed)); in seed()
50 static uint64_t generate(php_random_status *status) in generate() argument
52 php_random_status_state_pcgoneseq128xslrr64 *s = status->state; in generate()
63 static bool serialize(php_random_status *status, HashTable *data) in serialize() argument
65 php_random_status_state_pcgoneseq128xslrr64 *s = status->state; in serialize()
80 static bool unserialize(php_random_status *status, HashTable *data) in unserialize() argument
82 php_random_status_state_pcgoneseq128xslrr64 *s = status->state; in unserialize()
170 seed128(engine->status, php_random_uint128_constant(t[0], t[1])); in PHP_METHOD()
[all …]
H A Dengine_combinedlcg.c35 static void seed(php_random_status *status, uint64_t seed) in seed() argument
37 php_random_status_state_combinedlcg *s = status->state; in seed()
43 static uint64_t generate(php_random_status *status) in generate() argument
45 php_random_status_state_combinedlcg *s = status->state; in generate()
59 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() argument
61 return php_random_range(&php_random_algo_combinedlcg, status, min, max); in range()
64 static bool serialize(php_random_status *status, HashTable *data) in serialize() argument
66 php_random_status_state_combinedlcg *s = status->state; in serialize()
77 static bool unserialize(php_random_status *status, HashTable *data) in unserialize() argument
79 php_random_status_state_combinedlcg *s = status->state; in unserialize()
H A Drandom.c85 uint32_t r = algo->generate(status); in php_random_range32()
120 uint32_t r = algo->generate(status); in php_random_range32()
141 uint64_t r = algo->generate(status); in php_random_range64()
176 uint64_t r = algo->generate(status); in php_random_range64()
235 return status; in php_random_status_alloc()
248 if (status != NULL) { in php_random_status_free()
249 pefree(status->state, persistent); in php_random_status_free()
252 pefree(status, persistent); in php_random_status_free()
283 if (old_engine->status) { in php_random_engine_common_clone_object()
284 …new_engine->status = php_random_status_copy(old_engine->algo, old_engine->status, new_engine->stat… in php_random_engine_common_clone_object()
[all …]
H A Dengine_xoshiro256starstar.c86 php_random_status_state_xoshiro256starstar *s = status->state; in seed256()
94 static void seed(php_random_status *status, uint64_t seed) in seed() argument
103 seed256(status, s[0], s[1], s[2], s[3]); in seed()
106 static uint64_t generate(php_random_status *status) in generate() argument
108 return generate_state(status->state); in generate()
116 static bool serialize(php_random_status *status, HashTable *data) in serialize() argument
118 php_random_status_state_xoshiro256starstar *s = status->state; in serialize()
129 static bool unserialize(php_random_status *status, HashTable *data) in unserialize() argument
131 php_random_status_state_xoshiro256starstar *s = status->state; in unserialize()
238 seed256(engine->status, t[0], t[1], t[2], t[3]); in PHP_METHOD()
[all …]
H A Dengine_user.c24 static uint64_t generate(php_random_status *status) in generate() argument
26 php_random_status_state_user *s = status->state; in generate()
44 status->last_generated_size = size; in generate()
61 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() argument
63 return php_random_range(&php_random_algo_user, status, min, max); in range()
/PHP-8.3/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-8.3/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-8.3/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-8.3/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 …]
H A Ddateformat_helpers.cpp36 UErrorCode status = UErrorCode(); in datefmt_process_calendar_arg() local
40 cal = new GregorianCalendar(locale, status); in datefmt_process_calendar_arg()
57 cal = Calendar::createInstance(locale, status); in datefmt_process_calendar_arg()
59 cal = new GregorianCalendar(locale, status); in datefmt_process_calendar_arg()
86 if (cal == NULL && !U_FAILURE(status)) { in datefmt_process_calendar_arg()
87 status = U_MEMORY_ALLOCATION_ERROR; in datefmt_process_calendar_arg()
89 if (U_FAILURE(status)) { in datefmt_process_calendar_arg()
/PHP-8.3/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 …]
/PHP-8.3/ext/zip/tests/
H A Doo_properties.phpt18 printf("zip->status (%d):\n\tempty(): %d\n\tisset(): %d\n", $zip->status, empty($zip->status), isse…
25 printf("zip->status (%d):\n\tempty(): %d\n\tisset(): %d\n", $zip->status, empty($zip->status), isse…
34 zip->status (0):
45 zip->status (0):
/PHP-8.3/ext/intl/calendar/
H A Dgregoriancalendar_methods.cpp54 if (U_FAILURE(status)) { in set_gregorian_calendar_time_zone()
55 intl_error_set(NULL, status, in set_gregorian_calendar_time_zone()
90 UErrorCode status = U_ZERO_ERROR; in _php_intlgregcal_constructor_body() local
155 status); in _php_intlgregcal_constructor_body()
157 if (U_FAILURE(status)) { in _php_intlgregcal_constructor_body()
178 (int32_t)largs[2], status); in _php_intlgregcal_constructor_body()
185 status); in _php_intlgregcal_constructor_body()
226 UErrorCode status = U_ZERO_ERROR; in PHP_METHOD() local
244 if (!set_gregorian_calendar_time_zone(gcal, status)) { in PHP_METHOD()
261 UErrorCode status = U_ZERO_ERROR; in PHP_METHOD() local
[all …]

Completed in 99 milliseconds

12345678910>>...13