Home
last modified time | relevance | path

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

12345678910>>...12

/PHP-7.2/ext/intl/transliterator/
H A Dtransliterator_class.c35 UErrorCode *status ) in transliterator_object_construct() argument
52 u8str = intl_convert_utf16_to_utf8(ustr_id, (int ) ustr_id_len, status ); in transliterator_object_construct()
/PHP-7.2/ext/fileinfo/libmagic/
H A Dcompress.c544 int status; in writechild() local
567 if (wait(&status) == -1) { in writechild()
571 DPRINTF("Grandchild wait return %#x\n", status); in writechild()
620 int status, rv; in uncompressbuf() local
/PHP-7.2/ext/zip/tests/
H A Doo_setcomment.phpt37 if (!$zip->status == ZIPARCHIVE::ER_OK) {
/PHP-7.2/ext/sysvsem/tests/
H A Dnowait.phpt80 $status = null;
81 pcntl_waitpid($pid, $status);
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_sockets.c275 int status; in fpm_socket_af_inet_socket_by_addr() local
282 if ((status = getaddrinfo(addr, port, &hints, &servinfo)) != 0) { in fpm_socket_af_inet_socket_by_addr()
283 zlog(ZLOG_ERROR, "getaddrinfo: %s\n", gai_strerror(status)); in fpm_socket_af_inet_socket_by_addr()
/PHP-7.2/ext/json/
H A Djson_encoder.c256 int status; in php_json_escape_string() local
294 us = php_next_utf8_char((unsigned char *)s, len, &pos, &status); in php_json_escape_string()
297 if (status != SUCCESS) { in php_json_escape_string()
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_stmt_get_result.phpt35 // stmt object status test
60 // stmt object status test
83 // stmt object status test
H A Dmysqli_stmt_free_result.phpt32 // stmt object status test
H A Dmysqli_stmt_store_result.phpt30 // stmt object status test
/PHP-7.2/sapi/apache2handler/
H A Dphp_functions.c87 if (rr->status != HTTP_OK) { in PHP_FUNCTION()
133 if (rr->status == HTTP_OK) { in PHP_FUNCTION()
136 ADD_LONG(status); in PHP_FUNCTION()
/PHP-7.2/
H A DUPGRADING67 . Session is made to manage session status correctly and prevents invalid operations.
70 . Functions are made to set or return correct session status.
76 . Functions prohibit invalid operations with regard to session status and
77 HTTP header status, return correct bool return value.
82 . INI value change by ini_set() returns update status correctly. Invalid INI modifications
90 . Some E_ERRORs are changed to E_WARNING since session status is managed correctly.
H A DREADME.TESTING94 test name or the file name. You can check the status of such a bug, by
113 Normally, the exit status of "make test" is zero, regardless of the results
115 and "make test" will set the exit status ("$?") to non-zero, when an
146 NOTE: The exit status of run-tests.php will be 1 when
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
/PHP-7.2/ext/mysqli/
H A Dmysqli_driver.c131 mysqli_resource->status = (ZEND_NUM_ARGS() == 1) ? MYSQLI_STATUS_INITIALIZED : MYSQLI_STATUS_VALID; in MAP_PROPERTY_MYG_BOOL_READ()
H A Dmysqli_priv.h78 extern void php_mysqli_report_index(const char *query, unsigned int status);
H A Dmysqli_libmysql.h32 #define mysqli_result_is_unbuffered(r) ((r)->handle && (r)->handle->status == MYSQL_STATUS_USE_RES…
/PHP-7.2/ext/tidy/
H A Dtidy.c1098 int status; in PHP_INI_MH() local
1112 status = php_output_get_status(); in PHP_INI_MH()
1114 if (value && (status & PHP_OUTPUT_WRITTEN)) { in PHP_INI_MH()
1118 if (status & PHP_OUTPUT_SENT) { in PHP_INI_MH()
1124 status = OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
1132 return status; in PHP_INI_MH()
1162 int status = FAILURE; in php_tidy_output_handler() local
1176 return status; in php_tidy_output_handler()
1191 status = SUCCESS; in php_tidy_output_handler()
1199 return status; in php_tidy_output_handler()
/PHP-7.2/ext/bcmath/libbcmath/
H A Daclocal.m429 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
110 dnl When config.status generates a header, we must update the stamp-h file.
/PHP-7.2/ext/intl/timezone/
H A Dtimezone_class.cpp179 UErrorCode status = U_ZERO_ERROR; /* outside_error may be NULL */ in timezone_process_timezone_argument() local
182 &status) == FAILURE) { in timezone_process_timezone_argument()
186 intl_errors_set(outside_error, status, message, 1); in timezone_process_timezone_argument()
/PHP-7.2/ext/pgsql/
H A Dpgsql.c1839 ExecStatusType status; local
1883 switch (status) {
1942 ExecStatusType status; local
2018 switch (status) {
2058 ExecStatusType status; local
2102 switch (status) {
2145 ExecStatusType status; local
2222 switch (status) {
4152 switch (status) {
4285 switch (status) {
[all …]
/PHP-7.2/ext/standard/tests/http/
H A Dserver.inc115 pcntl_waitpid($pid, $status);
/PHP-7.2/ext/pcntl/tests/
H A D002.phpt47 pcntl_waitpid($pid, $status);
/PHP-7.2/ext/standard/
H A Dimage.c209 int status = 0; in php_handle_swc() local
248 status = uncompress(buf, &szlength, (unsigned char *) ZSTR_VAL(bufz), ZSTR_LEN(bufz)); in php_handle_swc()
249 } while ((status==Z_BUF_ERROR)&&(factor<maxfactor)); in php_handle_swc()
255 if (status == Z_OK) { in php_handle_swc()
264 if (!status) { in php_handle_swc()
/PHP-7.2/sapi/fpm/tests/
H A Dtester.inc464 * Execute and check status request(s).
472 public function status(
475 string $statusPath = '/status',
482 require_once "status.inc";
483 $status = new Status();
487 $status->checkStatus($response, $expectedFields, $format);
/PHP-7.2/ext/pdo/
H A DTODO66 mysqli_stat(); one line summary of server status

Completed in 88 milliseconds

12345678910>>...12