Home
last modified time | relevance | path

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

12345678910>>...12

/PHP-7.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp932.c151 switch (filter->status) { in mbfl_filt_conv_cp932_wchar()
158 filter->status = 1; in mbfl_filt_conv_cp932_wchar()
168 filter->status = 0; in mbfl_filt_conv_cp932_wchar()
221 filter->status = 0; in mbfl_filt_conv_cp932_wchar()
332 if (filter->status) { /* kanji second char */ in mbfl_filt_ident_cp932()
336 filter->status = 0; in mbfl_filt_ident_cp932()
342 filter->status = 1; in mbfl_filt_ident_cp932()
H A Dmbfilter_big5.c161 switch (filter->status) { in mbfl_filt_conv_big5_wchar()
174 filter->status = 1; in mbfl_filt_conv_big5_wchar()
184 filter->status = 0; in mbfl_filt_conv_big5_wchar()
234 filter->status = 0; in mbfl_filt_conv_big5_wchar()
335 if (filter->status) { /* kanji second char */ in mbfl_filt_ident_big5()
339 filter->status = 0; in mbfl_filt_ident_big5()
343 filter->status = 1; in mbfl_filt_ident_big5()
/PHP-7.2/ext/standard/
H A Ddns_win32.c50 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
57 status = DnsQuery_A(hostname, DNS_TYPE_MX, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
59 if (status) { in PHP_FUNCTION()
99 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
130 status = DnsQuery_A(hostname, type, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
132 if (status) { in PHP_FUNCTION()
397 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
453 status = DnsQuery_A(hostname, type_to_fetch, DNS_QUERY_STANDARD, NULL, &pResult, NULL); in PHP_FUNCTION()
455 if (status) { in PHP_FUNCTION()
456 if (status == DNS_INFO_NO_RECORDS || status == DNS_ERROR_RCODE_NAME_ERROR) { in PHP_FUNCTION()
/PHP-7.2/ext/intl/calendar/
H A Dcalendar_methods.cpp56 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
98 int32_t count(UErrorCode& status) const { in count()
99 return uenum_count(uenum, &status); in count()
106 if (str == 0 || U_FAILURE(status)) { in snext()
116 if (str == 0 || U_FAILURE(status)) { in next()
127 void reset(UErrorCode& status) in reset() argument
129 uenum_reset(uenum, &status); in reset()
143 UErrorCode status = U_ZERO_ERROR; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() local
162 status); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
171 if (U_FAILURE(status)) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
[all …]
/PHP-7.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_ident.c244 filter->status = 0; in mbfl_identify_filter_init2()
280 filter->status = 0; in mbfl_filt_ident_common_ctor()
286 filter->status = 0; in mbfl_filt_ident_common_dtor()
297 filter->status = 0; in mbfl_filt_ident_false_ctor()
/PHP-7.2/ext/intl/collator/
H A Dcollator_convert.h24 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status );
25 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status );
/PHP-7.2/ext/standard/tests/file/
H A Dbug47517.phpt8 exec('net session 2>&1', $out, $status);
9 if (!$status) {
/PHP-7.2/ext/zip/tests/
H A Dbug38944.phpt12 var_dump($foo->status);
29 ["status"]=>
/PHP-7.2/ext/standard/tests/streams/
H A Dbug64433.phpt25 echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1");
35 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",…
45 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",…
/PHP-7.2/sapi/cli/tests/
H A Dbug65066_100.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 100 status code
H A Dbug65066_422.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 422 status code
H A Dbug65066_511.phpt2 Bug #65066 (Cli server not responsive when responding with 422 http status code): 511 status code
/PHP-7.2/ext/pgsql/tests/
H A D29nb_async_connect.phpt24 switch ($status = pg_connect_poll($db)) {
36 die("unknown poll status");
/PHP-7.2/sapi/fpm/
H A DMakefile.frag28 @$(INSTALL_DATA) sapi/fpm/status.html $(INSTALL_ROOT)$(datadir)/fpm/status.html
/PHP-7.2/sapi/fpm/tests/
H A Dstatus-basic.phpt17 pm.status_path = /status
37 $tester->status($expectedStatusData);
/PHP-7.2/ext/opcache/tests/
H A Dblacklist-win32.phpt20 $status = opcache_get_status();
21 print_r(count($status['scripts']) > 0);
H A Dblacklist.phpt20 $status = opcache_get_status();
21 print_r(count($status['scripts']));
/PHP-7.2/ext/phar/tests/tar/
H A Dbug70417.phpt8 exec('lsof -p ' . getmypid(), $out, $status);
9 if ($status !== 0) {
/PHP-7.2/ext/curl/tests/
H A Dcurl_multi_info_read.phpt25 $status = curl_multi_exec($mh, $active);
30 } while ($status === CURLM_CALL_MULTI_PERFORM || $active);
H A Dbug77946.phpt25 $status = curl_multi_exec($mh, $active);
32 } while ($status === CURLM_CALL_MULTI_PERFORM || $active);
/PHP-7.2/ext/intl/grapheme/
H A Dgrapheme_util.h24 UBreakIterator* grapheme_get_break_iterator(void *stack_buffer, UErrorCode *status );
39 UBreakIterator* grapheme_get_break_iterator(void *stack_buffer, UErrorCode *status );
/PHP-7.2/ext/pcntl/
H A Dpcntl.c66 ZEND_ARG_INFO(1, status)
72 ZEND_ARG_INFO(1, status)
110 ZEND_ARG_INFO(0, status)
114 ZEND_ARG_INFO(0, status)
119 ZEND_ARG_INFO(0, status)
124 ZEND_ARG_INFO(0, status)
128 ZEND_ARG_INFO(0, status)
132 ZEND_ARG_INFO(0, status)
136 ZEND_ARG_INFO(0, status)
662 int status; in PHP_FUNCTION() local
[all …]
/PHP-7.2/ext/intl/transliterator/
H A Dtransliterator_methods.c247 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
261 en = utrans_openIDs( &status ); in PHP_FUNCTION()
262 INTL_CHECK_STATUS( status, in PHP_FUNCTION()
266 while( (elem = uenum_unext( en, &elem_len, &status )) ) in PHP_FUNCTION()
268 zend_string *el = intl_convert_utf16_to_utf8(elem, elem_len, &status ); in PHP_FUNCTION()
281 intl_error_set_code( NULL, status ); in PHP_FUNCTION()
282 if( U_FAILURE( status ) ) in PHP_FUNCTION()
/PHP-7.2/ext/pdo_pgsql/
H A Dpgsql_driver.c365 ExecStatusType status; in pdo_pgsql_last_insert_id() local
375 status = PQresultStatus(res); in pdo_pgsql_last_insert_id()
377 if (res && (status == PGRES_TUPLES_OK)) { in pdo_pgsql_last_insert_id()
556 ExecStatusType status; in PHP_METHOD() local
592 status = PQresultStatus(pgsql_result); in PHP_METHOD()
664 ExecStatusType status; in PHP_METHOD() local
702 status = PQresultStatus(pgsql_result); in PHP_METHOD()
764 ExecStatusType status; in PHP_METHOD() local
801 status = PQresultStatus(pgsql_result); in PHP_METHOD()
859 ExecStatusType status; in PHP_METHOD() local
[all …]
/PHP-7.2/main/
H A Dalloca.c345 struct stk_stat status; in i00afunc() local
355 STKSTAT (&status); in i00afunc()
359 trailer = (struct stk_trailer *) (status.current_address in i00afunc()
360 + status.current_size in i00afunc()

Completed in 57 milliseconds

12345678910>>...12