Home
last modified time | relevance | path

Searched refs:handle (Results 51 – 75 of 446) sorted by relevance

12345678910>>...18

/PHP-8.3/sapi/phpdbg/tests/
H A Dexceptions_001.phpt2 Properly handle exceptions going to be uncaught
11 prompt> handle first
35 print "handle first\n";
/PHP-8.3/Zend/tests/
H A Dbug47714.phpt7 function handle($e) {
17 $h->handle($exception);
H A Dbug80781.phpt6 function handle(int $severity, string $message, string $file, int $line): bool {
14 set_error_handler('handle');
/PHP-8.3/ext/standard/tests/file/
H A Dbug78386.phpt9 $handle = popen('dir', 'r');
10 $stat = fstat($handle);
H A D007_basic.phpt35 var_dump($handle );
36 var_dump( ftell($handle) );
37 var_dump( feof($handle) );
40 var_dump( fclose($handle) );
41 var_dump( $handle );
49 var_dump( feof($handle) );
70 var_dump($handle );
71 var_dump( ftell($handle) );
72 var_dump( feof($handle) );
76 var_dump( $handle );
[all …]
H A Dfwrite_error.phpt21 // fwrite() on a file handle which is already closed
22 echo "-- Testing fwrite() with closed/unset file handle --\n";
42 -- Testing fwrite() with closed/unset file handle --
/PHP-8.3/ext/curl/tests/
H A Dcurl_copy_handle_basic_006.phpt14 echo '*** Testing curl copy handle with User Agent ***' . "\n";
29 …curl_close($ch); // cannot close original handle before curl_exec($copy) since it causes char * in…
34 *** Testing curl copy handle with User Agent ***
H A Dcurl_copy_handle_basic_001.phpt14 echo '*** Testing curl copy handle with simple GET ***' . "\n";
32 *** Testing curl copy handle with simple GET ***
/PHP-8.3/ext/standard/tests/dir/
H A Drewinddir_variation2.phpt6 * Open and close a directory handle then call rewinddir() to test behaviour
14 echo "\n-- Create the directory handle, read and close the directory --\n";
34 -- Create the directory handle, read and close the directory --
H A Drewinddir_variation2-win32-mb.phpt12 * Open and close a directory handle then call rewinddir() to test behaviour
20 echo "\n-- Create the directory handle, read and close the directory --\n";
40 -- Create the directory handle, read and close the directory --
H A Dreaddir_variation4.phpt6 * Pass a directory handle pointing to a directory that contains
48 $handle = "fp{$iterator}";
49 var_dump( $$handle = fopen(@"$dir_path$input.tmp", 'w') );
50 var_dump( fwrite($$handle, $key));
51 fclose($$handle);
H A Dreaddir_variation4-win32-mb.phpt12 * Pass a directory handle pointing to a directory that contains
54 $handle = "fp{$iterator}";
55 var_dump( $$handle = @fopen($dir_path . "私はガラスを食べられます$input.tmp", 'w') );
56 var_dump( fwrite($$handle, $key));
57 fclose($$handle);
/PHP-8.3/ext/ftp/tests/
H A Dgh10521.phpt22 $handle = fopen($local_file, 'w');
25 ftp_fget($ftp, $handle, 'gh10521', FTP_ASCII, $size);
26 fclose($handle);
H A Dftp_nb_fget_basic2.phpt19 $handle = fopen($local_file, 'a');
21 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_nb_fget_basic3.phpt19 $handle = fopen($local_file, 'a');
21 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_fget_basic2.phpt19 $handle = fopen($local_file, 'a');
21 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_fget_basic3.phpt19 $handle = fopen($local_file, 'a');
21 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_fget_basic1.phpt19 $handle = fopen($local_file, 'w');
21 var_dump(ftp_fget($ftp, $handle, 'fget.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_nb_fget_basic1.phpt19 $handle = fopen($local_file, 'w');
21 var_dump(ftp_nb_fget($ftp, $handle, 'fget.txt', FTP_ASCII, FTP_AUTORESUME));
/PHP-8.3/ext/openssl/tests/
H A DServerClientTestCase.inc168 $handle = $this->isWorker ? STDIN : $this->workerStdOut[$worker];
170 fgets($handle);
174 stream_set_blocking($handle, false);
175 $read = [$handle];
181 fgets($handle);
182 stream_set_blocking($handle, true);
/PHP-8.3/Zend/
H A Dzend_fibers.c170 void *handle; member
370 from->handle = data.handle; in zend_fiber_trampoline()
415 ucontext_t *handle = &context->stack->ucontext; in zend_fiber_init_context() local
417 getcontext(handle); in zend_fiber_init_context()
419 handle->uc_stack.ss_size = context->stack->size; in zend_fiber_init_context()
421 handle->uc_stack.ss_flags = 0; in zend_fiber_init_context()
422 handle->uc_link = NULL; in zend_fiber_init_context()
426 context->handle = handle; in zend_fiber_init_context()
510 swapcontext(from->handle, to->handle); in zend_fiber_switch_context()
525 to->handle = data.handle; in zend_fiber_switch_context()
[all …]
/PHP-8.3/ext/pcntl/
H A Dpcntl.c146 zval *handle; in PHP_RSHUTDOWN_FUNCTION() local
150 if (Z_TYPE_P(handle) != IS_LONG || Z_LVAL_P(handle) != (zend_long)SIG_DFL) { in PHP_RSHUTDOWN_FUNCTION()
599 zval *handle; in PHP_FUNCTION() local
607 Z_PARAM_ZVAL(handle) in PHP_FUNCTION()
643 if (Z_TYPE_P(handle) == IS_LONG) { in PHP_FUNCTION()
644 if (Z_LVAL_P(handle) != (zend_long) SIG_DFL && Z_LVAL_P(handle) != (zend_long) SIG_IGN) { in PHP_FUNCTION()
658 zend_string *func_name = zend_get_callable_name(handle); in PHP_FUNCTION()
669 handle = zend_hash_index_update(&PCNTL_G(php_signal_table), signo, handle); in PHP_FUNCTION()
670 Z_TRY_ADDREF_P(handle); in PHP_FUNCTION()
1081 zval params[2], *handle, retval; in pcntl_signal_dispatch() local
[all …]
/PHP-8.3/ext/spl/tests/
H A Dfixedarray_023.phpt18 Warning: var_export does not handle circular references in %s on line 8
20 Warning: var_export does not handle circular references in %s on line 8
/PHP-8.3/ext/standard/tests/array/
H A Dbug77135.phpt23 $this->handle($name, $flags);
24 $this->handle("{$name}_REFS", $flags | EXTR_REFS);
29 private function handle(string $name, int $flags): void
/PHP-8.3/ext/libxml/tests/
H A Dlibxml_get_external_entity_loader_error_callback_name.phpt19 public function handle($public, $system, $context) {
26 libxml_set_external_entity_loader([$o, 'handle']);

Completed in 39 milliseconds

12345678910>>...18