Home
last modified time | relevance | path

Searched refs:status (Results 126 – 150 of 314) sorted by relevance

12345678910>>...13

/PHP-8.3/ext/zip/tests/
H A Doo_archive_flag.phpt15 var_dump($zip->setArchiveFlag(ZipArchive::AFL_RDONLY, 1), $zip->status === ZipArchive::ER_OK);
22 var_dump($zip->setArchiveFlag(ZipArchive::AFL_RDONLY, 0), $zip->status !== ZipArchive::ER_OK);
H A Doo_addfile_proc.phpt27 if ($zip->status == ZIPARCHIVE::ER_OK) {
33 var_dump($zip->status);
/PHP-8.3/ext/curl/tests/
H A Dcurl_multi_info_read.phpt22 $status = curl_multi_exec($mh, $active);
23 } while ($status === CURLM_CALL_MULTI_PERFORM || $active);
H A Dcurl_pause_001.phpt36 $status = curl_multi_exec($mh, $active);
42 } while ($active && $status == CURLM_OK);
H A Dcurl_copy_handle_variation4.phpt28 $status = curl_multi_exec($mh, $active);
32 } while ($active && $status == CURLM_OK);
/PHP-8.3/ext/intl/transliterator/
H A Dtransliterator_methods.c224 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
233 en = utrans_openIDs( &status ); in PHP_FUNCTION()
234 INTL_CHECK_STATUS( status, in PHP_FUNCTION()
238 while( (elem = uenum_unext( en, &elem_len, &status )) ) in PHP_FUNCTION()
240 zend_string *el = intl_convert_utf16_to_utf8(elem, elem_len, &status ); in PHP_FUNCTION()
253 intl_error_set_code( NULL, status ); in PHP_FUNCTION()
254 if( U_FAILURE( status ) ) in PHP_FUNCTION()
/PHP-8.3/ext/phar/tests/tar/
H A Dbug70417.phpt9 exec('lsof -p ' . getmypid(), $out, $status);
10 if ($status !== 0) {
/PHP-8.3/ext/opcache/tests/
H A Dblacklist.phpt29 $status = opcache_get_status();
30 print_r(count($status['scripts']));
/PHP-8.3/ext/opcache/jit/dynasm/
H A Ddasm_arm64.h79 int status; /* Status code. */ member
147 D->status = DASM_S_OK; in dasm_setup()
161 D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0)
164 D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0)
356 if (D->status != DASM_S_OK) return D->status; in dasm_link()
557 if (D->status == DASM_S_OK) { in dasm_checkstep()
560 if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_LG|i; break; } in dasm_checkstep()
564 if (D->status == DASM_S_OK && secmatch >= 0 && in dasm_checkstep()
566 D->status = DASM_S_MATCH_SEC|(D->section-D->sections); in dasm_checkstep()
567 return D->status; in dasm_checkstep()
H A Ddasm_x86.h75 int status; /* Status code. */ member
153 D->status = DASM_S_OK; in dasm_setup()
167 D->status = DASM_S_##st|(int)(p-D->actionlist-1); return; } } while (0)
170 D->status=DASM_S_RANGE_##st|(int)(p-D->actionlist-1); return; } } while (0)
295 if (D->status != DASM_S_OK) return D->status; in dasm_link()
527 if (D->status == DASM_S_OK) { in dasm_checkstep()
530 if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_L|i; break; } in dasm_checkstep()
534 if (D->status == DASM_S_OK && secmatch >= 0 && in dasm_checkstep()
536 D->status = DASM_S_MATCH_SEC|(int)(D->section-D->sections); in dasm_checkstep()
537 return D->status; in dasm_checkstep()
/PHP-8.3/ext/oci8/tests/
H A Dbug51291_1.phpt60 echo "Rollback status is ";
79 echo "Execute status is ";
98 echo "Execute status is ";
117 echo "Execute status is ";
135 echo "Execute status is ";
258 Rollback status is true
286 Execute status is true
315 Execute status is true
336 Execute status is false
376 Execute status is false
/PHP-8.3/ext/pdo_pgsql/
H A Dpgsql_driver.c388 ExecStatusType status; in pdo_pgsql_last_insert_id() local
398 status = PQresultStatus(res); in pdo_pgsql_last_insert_id()
400 if (res && (status == PGRES_TUPLES_OK)) { in pdo_pgsql_last_insert_id()
620 ExecStatusType status; in PHP_METHOD() local
656 status = PQresultStatus(pgsql_result); in PHP_METHOD()
730 ExecStatusType status; in PHP_METHOD() local
768 status = PQresultStatus(pgsql_result); in PHP_METHOD()
829 ExecStatusType status; in PHP_METHOD() local
866 status = PQresultStatus(pgsql_result); in PHP_METHOD()
923 ExecStatusType status; in PHP_METHOD() local
[all …]
/PHP-8.3/ext/intl/common/
H A Dcommon_date.cpp211 UErrorCode status = UErrorCode(); in intl_zval_to_millis() local
212 rv = (double)co->ucal->getTime(status); in intl_zval_to_millis()
213 if (U_FAILURE(status)) { in intl_zval_to_millis()
216 intl_errors_set(err, status, message, 1); in intl_zval_to_millis()
/PHP-8.3/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()
3289 return status; in zend_can_early_bind()
3307 return status; in zend_can_early_bind()
[all …]
/PHP-8.3/ext/pcntl/tests/
H A Dpcntl_get_last_error.phpt8 $pid = pcntl_wait($status);
/PHP-8.3/ext/mysqli/
H A Dphp_mysqli_structs.h75 enum mysqli_status status; /* object status */ member
189 if (my_res->status < __check) { \
203 if (my_res->status < __check) { \
227 ((MYSQLI_RESOURCE *)intern->ptr)->status = __value; \
/PHP-8.3/ext/standard/tests/general_functions/
H A Dheader_redirection_001.phpt2 Location: headers change the status code
/PHP-8.3/ext/intl/msgformat/
H A Dmsgformat_helpers.h22 UChar *source, int source_len, UErrorCode *status);
H A Dmsgformat_helpers.cpp531 UErrorCode status = UErrorCode(); in umsg_format_helper() local
532 u8key = intl_charFromString(key, &status); in umsg_format_helper()
575 UErrorCode status = UErrorCode(); in umsg_format_helper() local
576 u8key = intl_charFromString(key, &status); in umsg_format_helper()
621 …MessageFormat *fmt, int *count, zval **args, UChar *source, int32_t source_len, UErrorCode *status) in umsg_parse_helper() argument
624 Formattable *fargs = ((const MessageFormat*)fmt)->parse(srcString, *count, *status); in umsg_parse_helper()
626 if(U_FAILURE(*status)) { in umsg_parse_helper()
664 u8str = intl_convert_utf16_to_utf8(temp.getBuffer(), temp.length(), status); in umsg_parse_helper()
674 *status = U_ILLEGAL_ARGUMENT_ERROR; in umsg_parse_helper()
/PHP-8.3/ext/intl/
H A Dintl_error.c210 UErrorCode status; in intl_parse_error_to_string() local
238 u8str = intl_convert_utf16_to_utf8(pe->preContext, -1, &status ); in intl_parse_error_to_string()
257 u8str = intl_convert_utf16_to_utf8(pe->postContext, -1, &status ); in intl_parse_error_to_string()
/PHP-8.3/main/streams/
H A Dfilter.c324 php_stream_filter_status_t status; in php_stream_filter_append_ex() local
330 status = filter->fops->filter(stream, filter, brig_inp, brig_outp, &consumed, PSFS_FLAG_NORMAL); in php_stream_filter_append_ex()
334 status = PSFS_ERR_FATAL; in php_stream_filter_append_ex()
337 switch (status) { in php_stream_filter_append_ex()
417 php_stream_filter_status_t status; in _php_stream_filter_flush() local
419 status = current->fops->filter(stream, current, inp, outp, NULL, flags); in _php_stream_filter_flush()
420 if (status == PSFS_FEED_ME) { in _php_stream_filter_flush()
424 if (status == PSFS_ERR_FATAL) { in _php_stream_filter_flush()
/PHP-8.3/ext/zip/examples/
H A Ddir.php12 echo "status: " . $za->status . "\n";
H A Dcreate.php21 echo "status:" . $zip->status . "\n";
/PHP-8.3/sapi/apache2handler/
H A Dsapi_apache2.c154 ctx->r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_send_headers()
185 apr_status_t status; in php_apache_sapi_read_post() local
197 …while ((status = ap_get_brigade(r->input_filters, brigade, AP_MODE_READBYTES, APR_BLOCK_READ, len)… in php_apache_sapi_read_post()
208 if (status != APR_SUCCESS) { in php_apache_sapi_read_post()
305 r->status = SG(sapi_headers).http_response_code; in php_apache_sapi_flush()
527 SG(sapi_headers).http_response_code = !r->status ? HTTP_OK : r->status; in php_apache_request_ctor()
697 …if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol… in php_handler()
/PHP-8.3/ext/pcre/tests/
H A Dcheck_jit_enabled.phpt2 Check for JIT enablement status

Completed in 54 milliseconds

12345678910>>...13