Home
last modified time | relevance | path

Searched refs:status (Results 201 – 225 of 314) sorted by relevance

12345678910>>...13

/PHP-8.3/ext/intl/timezone/
H A Dtimezone_class.cpp179 UErrorCode status = U_ZERO_ERROR; /* outside_error may be NULL */ in timezone_process_timezone_argument() local
185 &status) == FAILURE) { in timezone_process_timezone_argument()
189 intl_errors_set(outside_error, status, message, 1); in timezone_process_timezone_argument()
/PHP-8.3/ext/mysqli/
H A Dmysqli_nonapi.c135 (mysqli_resource->status > MYSQLI_STATUS_INITIALIZED))
138 php_mysqli_close(mysql, MYSQLI_CLOSE_IMPLICIT, mysqli_resource->status);
283 mysqli_resource->status = MYSQLI_STATUS_VALID;
633 mysqli_resource->status = MYSQLI_STATUS_VALID;
664 if (my_res->status < MYSQLI_STATUS_VALID) {
859 mysqli_resource->status = MYSQLI_STATUS_VALID;
884 mysqli_resource->status = MYSQLI_STATUS_VALID;
910 mysqli_resource->status = MYSQLI_STATUS_VALID;
936 mysqli_resource->status = MYSQLI_STATUS_VALID;
/PHP-8.3/tests/output/
H A Dob_013.phpt2 output buffering - handlers/status
/PHP-8.3/ext/zip/tests/
H A Doo_replacefile.phpt27 if ($zip->status == ZIPARCHIVE::ER_OK) {
H A Ddoubleclose.phpt25 if ($zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_rename.phpt22 if (!$zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_addglob2.phpt43 if ($zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_addpattern.phpt39 if ($zip->status == ZIPARCHIVE::ER_OK) {
H A Doo_delete.phpt21 if ($zip->status == ZIPARCHIVE::ER_OK) {
/PHP-8.3/ext/curl/tests/
H A Dbug76675.phpt37 $status = curl_multi_exec($mh, $active);
/PHP-8.3/ext/standard/tests/general_functions/
H A Dproc_open02.phpt20 var_dump(proc_terminate($cat, 0)); // status check
/PHP-8.3/ext/standard/tests/http/
H A Dgh9316.phpt2 Bug GH-9316 ($http_response_header is wrong for long status line)
/PHP-8.3/sapi/fpm/tests/
H A Dgh9921-php-value-ext-mod-handlers.phpt20 pm.status_path = /status
/PHP-8.3/ext/opcache/tests/
H A Dgh9164.phpt31 pcntl_wait($status);
/PHP-8.3/ext/pcntl/
H A Dpcntl_arginfo.h9 ZEND_ARG_INFO(1, status)
15 ZEND_ARG_INFO(1, status)
58 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
65 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
72 ZEND_ARG_TYPE_INFO(0, status, IS_LONG, 0)
/PHP-8.3/ext/mbstring/ucgendat/
H A Ducgendat.php295 $status = $fields[1];
296 if ($status == 'T') {
301 if ($status == 'C' || $status == 'S') {
310 } else if ($status == 'F') {
/PHP-8.3/ext/tidy/
H A Dtidy.c907 int status; in PHP_INI_MH() local
913 status = php_output_get_status(); in PHP_INI_MH()
915 if (value && (status & PHP_OUTPUT_WRITTEN)) { in PHP_INI_MH()
919 if (status & PHP_OUTPUT_SENT) { in PHP_INI_MH()
925 status = OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
933 return status; in PHP_INI_MH()
963 int status = FAILURE; in php_tidy_output_handler() local
977 return status; in php_tidy_output_handler()
992 status = SUCCESS; in php_tidy_output_handler()
1000 return status; in php_tidy_output_handler()
/PHP-8.3/ext/sysvsem/tests/
H A Dnowait.phpt77 $status = null;
78 pcntl_waitpid($pid, $status);
/PHP-8.3/Zend/asm/
H A Djump_i386_ms_pe_masm.asm32 ; save MMX control- and status-word
73 ; restore MMX control- and status-word
/PHP-8.3/ext/pcntl/tests/
H A Dpcntl_fork_variation.phpt17 pcntl_wait($status);
/PHP-8.3/Zend/
H A Dzend_fibers.h93 zend_fiber_status status; member
/PHP-8.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h55 int status; member
/PHP-8.3/ext/pdo_oci/
H A Dphp_pdo_oci_int.h94 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isini…
/PHP-8.3/ext/standard/tests/file/
H A Dfile.inc267 $status = create_file($filename, $mode);
271 if ($status == true) {
370 $status = symlink( $src_filename, $linkname);
372 if ($status) {
384 $status = link($src_filename, $linkname);
386 if ($status) {
475 $status = delete_file($filename);
476 if($status == true) {
478 } else if($status == FILE_NOT_FOUND) {
/PHP-8.3/sapi/fpm/fpm/
H A Dfpm_conf.c966 char *status = wp->config->pm_status_path; in fpm_conf_process_all_pools() local
968 if (*status != '/') { in fpm_conf_process_all_pools()
969 …zlog(ZLOG_ERROR, "[pool %s] the status path '%s' must start with a '/'", wp->config->name, status); in fpm_conf_process_all_pools()
973 if (!wp->config->pm_status_listen && !wp->shared && strlen(status) < 2) { in fpm_conf_process_all_pools()
974 zlog(ZLOG_ERROR, "[pool %s] the status path '%s' is not long enough", wp->config->name, status); in fpm_conf_process_all_pools()
978 for (i = 0; i < strlen(status); i++) { in fpm_conf_process_all_pools()
979 …if (!isalnum(status[i]) && status[i] != '/' && status[i] != '-' && status[i] != '_' && status[i] !… in fpm_conf_process_all_pools()
980 …path '%s' must contain only the following characters '[alphanum]/_-.~'", wp->config->name, status); in fpm_conf_process_all_pools()

Completed in 53 milliseconds

12345678910>>...13