Home
last modified time | relevance | path

Searched refs:status (Results 1 – 25 of 277) sorted by path

12345678910>>...12

/PHP-7.4/
H A D.gitignore57 config.status
124 /sapi/fpm/status.html
H A DCODING_STANDARDS.md324 * Ongoing status notes which may not be appropriate for Git comments.
H A DNEWS498 . Fixed bug #69625 (FPM returns 200 status on request without
2303 status=11/SEGV). (Jakub Zelenka)
2548 with status 0). (Robert Lu)
H A DREADME.md17 [![Build status](https://travis-ci.org/php/php-src.svg?branch=master)](https://travis-ci.org/php/ph…
18 [![Build status](https://ci.appveyor.com/api/projects/status/meyur6fviaxgdwdy?svg=true)](https://ci…
19 [![Build Status](https://dev.azure.com/phpazuredevops/php/_apis/build/status/php.php-src?branchName…
/PHP-7.4/Zend/
H A Dzend_builtin_functions.c427 zend_gc_status status; in ZEND_FUNCTION() local
433 zend_gc_get_status(&status); in ZEND_FUNCTION()
437 add_assoc_long_ex(return_value, "runs", sizeof("runs")-1, (long)status.runs); in ZEND_FUNCTION()
438 add_assoc_long_ex(return_value, "collected", sizeof("collected")-1, (long)status.collected); in ZEND_FUNCTION()
439 add_assoc_long_ex(return_value, "threshold", sizeof("threshold")-1, (long)status.threshold); in ZEND_FUNCTION()
440 add_assoc_long_ex(return_value, "roots", sizeof("roots")-1, (long)status.num_roots); in ZEND_FUNCTION()
H A Dzend_gc.c1612 ZEND_API void zend_gc_get_status(zend_gc_status *status) in zend_gc_get_status() argument
1614 status->runs = GC_G(gc_runs); in zend_gc_get_status()
1615 status->collected = GC_G(collected); in zend_gc_get_status()
1616 status->threshold = GC_G(gc_threshold); in zend_gc_get_status()
1617 status->num_roots = GC_G(num_roots); in zend_gc_get_status()
H A Dzend_gc.h48 ZEND_API void zend_gc_get_status(zend_gc_status *status);
H A Dzend_inheritance.c423 inheritance_status status, local_status; in zend_do_perform_implementation_check() local
475 status = INHERITANCE_SUCCESS; in zend_do_perform_implementation_check()
494 status = INHERITANCE_UNRESOLVED; in zend_do_perform_implementation_check()
519 status = INHERITANCE_UNRESOLVED; in zend_do_perform_implementation_check()
523 return status; in zend_do_perform_implementation_check()
698 if (status == INHERITANCE_UNRESOLVED) { in emit_incompatible_method_error()
984 if (status == INHERITANCE_ERROR) { in do_inherit_property()
2357 inheritance_status status = in check_variance_obligation() local
2359 if (status != INHERITANCE_SUCCESS) { in check_variance_obligation()
2415 inheritance_status status; in report_variance_errors() local
[all …]
/PHP-7.4/build/
H A DMakefile.global121 …rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool m…
125 …p-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
H A Dlibtool.m4985 int status = $lt_dlunknown;
989 if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
990 else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
996 return (status);
4012 # add code to config.status for appending the configuration named by
4499 # `config.status --recheck' to rerun these tests and create the
/PHP-7.4/docs/
H A Doutput-api.md6 Checking output control layers status:
H A Drelease-process.md20 ongoing basis between the releases. Check the CI status for your branch
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE435 decision will be guided by the two goals of preserving the free status
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c78 int status; in php_bz2_decompress_filter() local
98 if (BZ_OK != status) { in php_bz2_decompress_filter()
127 } else if (status != BZ_OK) { in php_bz2_decompress_filter()
158 status = BZ_OK; in php_bz2_decompress_filter()
159 while (status == BZ_OK) { in php_bz2_decompress_filter()
169 } else if (status == BZ_OK) { in php_bz2_decompress_filter()
216 int status; in php_bz2_compress_filter() local
244 if (status != BZ_RUN_OK && status != BZ_FLUSH_OK && status != BZ_FINISH_OK) { in php_bz2_compress_filter()
317 int status = BZ_OK; in php_bz2_filter_create() local
392 status = BZ_DATA_ERROR; in php_bz2_filter_create()
[all …]
/PHP-7.4/ext/com_dotnet/tests/
H A Dbug77578.phpt10 // to execute a PHP subprocess, and check its exit status.
15 exec($command, $output, $status);
16 var_dump($output, $status);
/PHP-7.4/ext/curl/tests/
H A Dbug76675.phpt37 $status = curl_multi_exec($mh, $active);
H A Dbug77946.phpt25 $status = curl_multi_exec($mh, $active);
32 } while ($status === CURLM_CALL_MULTI_PERFORM || $active);
H A Dcurl_copy_handle_variation4.phpt28 $status = curl_multi_exec($mh, $active);
32 } while ($active && $status == CURLM_OK);
H A Dcurl_multi_info_read.phpt24 $status = curl_multi_exec($mh, $active);
25 } while ($status === CURLM_CALL_MULTI_PERFORM || $active);
H A Dserver.inc28 $status = proc_get_status($handle);
31 if (!($status && $status['running'])) {
57 $status = proc_get_status($handle);
58 if (!($status && $status['running'])) {
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcompress.c691 int status, rv, w; in uncompressbuf() local
806 w = waitpid(pid, &status, 0); in uncompressbuf()
811 DPRINTF("Child wait return %#x\n", status); in uncompressbuf()
812 } else if (!WIFEXITED(status)) { in uncompressbuf()
813 DPRINTF("Child not exited (%#x)\n", status); in uncompressbuf()
814 } else if (WEXITSTATUS(status) != 0) { in uncompressbuf()
815 DPRINTF("Child exited (%#x)\n", WEXITSTATUS(status)); in uncompressbuf()
822 w = waitpid(writepid, &status, 0); in uncompressbuf()
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic2187 # status of partition dpme_flags
H A Dmagic私はガラスを食べられます2187 # status of partition dpme_flags
/PHP-7.4/ext/filter/
H A Dcallback_filter.c25 int status; in php_filter_callback() local
35 status = call_user_function_ex(NULL, NULL, option_array, &retval, 1, args, 0, NULL); in php_filter_callback()
37 if (status == SUCCESS && !Z_ISUNDEF(retval)) { in php_filter_callback()
/PHP-7.4/ext/ftp/tests/
H A Dbug39583-2.phpt22 // check upload status

Completed in 180 milliseconds

12345678910>>...12