Home
last modified time | relevance | path

Searched refs:status (Results 176 – 200 of 277) sorted by path

12345678910>>...12

/PHP-7.4/ext/standard/
H A Dhtml.h58 …gned int php_next_utf8_char(const unsigned char *str, size_t str_len, size_t *cursor, int *status);
H A Dimage.c207 int status = 0; in php_handle_swc() local
246 status = uncompress(buf, &szlength, (unsigned char *) ZSTR_VAL(bufz), ZSTR_LEN(bufz)); in php_handle_swc()
247 } while ((status==Z_BUF_ERROR)&&(factor<maxfactor)); in php_handle_swc()
253 if (status == Z_OK) { in php_handle_swc()
262 if (!status) { in php_handle_swc()
H A Dnet.c278 zval *unicast, *status; in PHP_FUNCTION()
298 status = zend_hash_str_find(Z_ARR_P(iface), "up", sizeof("up") - 1); in PHP_FUNCTION()
299 if (!status) { in PHP_FUNCTION()
H A Dpassword.c232 int status = 0; in php_password_bcrypt_verify() local
249 status |= (ZSTR_VAL(ret)[i] ^ ZSTR_VAL(hash)[i]); in php_password_bcrypt_verify()
253 return status == 0; in php_password_bcrypt_verify()
384 int status = 0; in php_password_argon2_hash() local
428 status = argon2_hash( in php_password_argon2_hash()
447 if (status != ARGON2_OK) { in php_password_argon2_hash()
449 php_error_docref(NULL, E_WARNING, "%s", argon2_error_message(status)); in php_password_argon2_hash()
H A Dstring.c6404 int status = FAILURE; local
6405 c = php_next_utf8_char((const unsigned char*)s, (size_t) len, &pos, &status);
6410 if (status == FAILURE || c > 0xFFU) {
/PHP-7.4/ext/standard/tests/file/
H A Dbug26615.phpt8 $status = -1;
10 …_EXECUTABLE'].' -n -r \'for($i=1;$i<=5000;$i++) print "$i\n";\' | tr \'\n\' \' \'', $out, $status);
12 …exec($_ENV['TEST_PHP_EXECUTABLE'].' -n -r "for($i=1;$i<=5000;$i++) echo $i,\' \';"', $out, $status
H A Dbug26938.phpt6 $status = -1;
14 . '}\'', $out, $status);
21 . '}"', $out, $status);
H A Dbug47517.phpt8 exec('net session 2>&1', $out, $status);
9 if (!$status) {
H A Dbug81145.phpt11 exec("fallocate -l " . (SIZE_4G-0x100) . " " . escapeshellarg($src), $output, $status);
12 if ($status !== 0) die("skip fallocate() not supported");
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) {
H A Dfwrite_basic-win32-mb.phpt67 clearstatcache();//clears file status cache
H A Dfwrite_basic-win32.phpt67 clearstatcache();//clears file status cache
H A Dfwrite_basic.phpt67 clearstatcache();//clears file status cache
H A Dfwrite_variation1-win32-mb.phpt71 clearstatcache();//clears file status cache
H A Dfwrite_variation1.phpt64 clearstatcache();//clears file status cache
H A Dfwrite_variation2-win32.phpt80 clearstatcache();//clears file status cache
H A Dfwrite_variation2.phpt80 clearstatcache();//clears file status cache
H A Dfwrite_variation3-win32.phpt72 clearstatcache();//clears file status cache
H A Dfwrite_variation3.phpt73 clearstatcache();//clears file status cache
H A Dfwrite_variation4-win32.phpt63 clearstatcache();//clears file status cache
H A Dfwrite_variation4.phpt63 clearstatcache();//clears file status cache
/PHP-7.4/ext/standard/tests/general_functions/
H A Dheader_redirection_001.phpt2 Location: headers change the status code
H A Dproc_open02.phpt20 var_dump(proc_terminate($cat, 0)); // status check
/PHP-7.4/ext/standard/tests/http/
H A Dserver.inc115 pcntl_waitpid($pid, $status);
/PHP-7.4/ext/standard/tests/streams/
H A Dbug64433.phpt23 echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1");
33 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",…
43 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",…

Completed in 89 milliseconds

12345678910>>...12