Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 649) sorted by last modified time

12345678910>>...26

/PHP-7.4/
H A DNEWS556 . Fixed bug #79177 (FFI doesn't handle well PHP exceptions within callback).
863 . Fixed bug #79579 (ZTS build of PHP 7.3.17 doesn't handle ERANGE for
940 . Fixed bug #79468 (SIGSEGV when closing stream handle with a stream filter
1590 . Fixed bug #77849 (Disable cloning of PDO handle/connection objects).
1695 . Implemented FR #77377 (No way to handle CTRL+C in Windows). (Anatol)
1701 . Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). (cmb)
1733 . Fixed bug #78689 (Closure::fromCallable() doesn't handle
1966 . Fixed bug #78241 (touch() does not handle dates after 2038 in PHP 64-bit). (cmb)
2117 . Fixed bug #77849 (Disable cloning of PDO handle/connection objects).
2752 . Fixed bug #50675 (SoapClient can't handle object references correctly).
H A D.gdbinit208 set $handle = $zvalue->value.obj.handle
212 printf "(%s) #%d", $cname, $handle
246 printf "resource: #%d", $zvalue->value.res->handle
/PHP-7.4/ext/gd/
H A Dgd.c272 ZEND_ARG_INFO(0, handle)
/PHP-7.4/ext/phar/
H A Dphar.c3254 return php_stream_read(phar_get_pharfp((phar_archive_data*)handle), buf, len); in phar_zend_stream_reader()
3258 static size_t phar_zend_stream_fsizer(void *handle) /* {{{ */ in phar_zend_stream_fsizer() argument
3260 return ((phar_archive_data*)handle)->halt_offset + 32; in phar_zend_stream_fsizer()
3302 if (file_handle->handle.stream.closer && file_handle->handle.stream.handle) { in phar_compile_file()
3303 file_handle->handle.stream.closer(file_handle->handle.stream.handle); in phar_compile_file()
3305 file_handle->handle.stream.handle = NULL; in phar_compile_file()
3317 file_handle->handle.stream.handle = phar; in phar_compile_file()
3318 file_handle->handle.stream.reader = phar_zend_stream_reader; in phar_compile_file()
3319 file_handle->handle.stream.closer = NULL; in phar_compile_file()
3320 file_handle->handle.stream.fsizer = phar_zend_stream_fsizer; in phar_compile_file()
[all …]
/PHP-7.4/ext/standard/
H A Ddns.c373 dns_handle_t handle; in PHP_FUNCTION() local
411 handle = dns_open(NULL); in PHP_FUNCTION()
412 if (handle == NULL) { in PHP_FUNCTION()
417 if (res_ninit(handle)) { in PHP_FUNCTION()
425 php_dns_free_handle(handle); in PHP_FUNCTION()
815 dns_handle_t handle; in PHP_FUNCTION() local
943 handle = dns_open(NULL); in PHP_FUNCTION()
944 if (handle == NULL) { in PHP_FUNCTION()
1061 dns_handle_t handle; in PHP_FUNCTION() local
1087 handle = dns_open(NULL); in PHP_FUNCTION()
[all …]
H A Dphp_dns.h29 #define php_dns_errno(handle) h_errno argument
43 #define php_dns_errno(handle) handle->res_h_errno argument
49 #define php_dns_errno(handle) h_errno argument
H A Dvar.c197 …php_printf("%sresource(%d) of type (%s)\n", COMMON, Z_RES_P(struc)->handle, type_name ? type_name … in php_var_dump()
383 …php_printf("%sresource(%d) of type (%s) refcount(%u)\n", COMMON, Z_RES_P(struc)->handle, type_name… in php_debug_zval_dump()
/PHP-7.4/main/
H A Dmain.c1606 php_stream_close((php_stream*)handle); in php_zend_stream_closer()
1612 php_stream *stream = handle; in php_zend_stream_fsizer()
1639 memset(handle, 0, sizeof(zend_file_handle)); in php_stream_open_for_zend_ex()
1640 handle->type = ZEND_HANDLE_STREAM; in php_stream_open_for_zend_ex()
1641 handle->filename = (char*)filename; in php_stream_open_for_zend_ex()
1642 handle->opened_path = opened_path; in php_stream_open_for_zend_ex()
1643 handle->handle.stream.handle = stream; in php_stream_open_for_zend_ex()
1644 handle->handle.stream.reader = (zend_stream_reader_t)_php_stream_read; in php_stream_open_for_zend_ex()
1645 handle->handle.stream.fsizer = php_zend_stream_fsizer; in php_stream_open_for_zend_ex()
1646 handle->handle.stream.isatty = 0; in php_stream_open_for_zend_ex()
[all …]
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch662 * handle a buffer containing a compiled file.
671 * handle a compiled file.
876 * handle an mmaped file.
2132 - /* TODO add code to handle V7 MUX and Blit MUX files */
2211 - /* Otherwise, handle it. */
/PHP-7.4/ext/date/lib/
H A Dparse_date.re1684 /* to handle the format weekday + last/this/next week */
/PHP-7.4/Zend/
H A Dzend_list.c50 return zend_hash_index_del(&EG(regular_list), res->handle); in zend_list_delete()
59 return zend_hash_index_del(&EG(regular_list), res->handle); in zend_list_free()
H A Dzend_API.c2591 if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) { in module_destructor()
2592 DL_UNLOAD(module->handle); in module_destructor()
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c130 …int (*accelerator_orig_zend_stream_open_function)(const char *filename, zend_file_handle *handle );
977 if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) { in zend_get_file_handle_timestamp()
1003 php_stream *stream = (php_stream *)file_handle->handle.stream.handle; in zend_get_file_handle_timestamp()
2232 static int persistent_stream_open_function(const char *filename, zend_file_handle *handle) in persistent_stream_open_function() argument
2245 zend_stream_init_filename(handle, (char*) filename); in persistent_stream_open_function()
2246 handle->opened_path = zend_string_copy(ZCG(cache_persistent_script)->script.filename); in persistent_stream_open_function()
2252 return accelerator_orig_zend_stream_open_function(filename, handle); in persistent_stream_open_function()
2924 extension->handle = 0; in accel_startup()
/PHP-7.4/sapi/cli/
H A Dphp_cli.c931 fclose(file_handle.handle.fp); in do_cli()
/PHP-7.4/main/streams/
H A Dplain_wrapper.c255 zend_uintptr_t handle = _get_osfhandle(self->fd); in detect_is_seekable()
257 if (handle != (zend_uintptr_t)INVALID_HANDLE_VALUE) { in detect_is_seekable()
258 DWORD file_type = GetFileType((HANDLE)handle); in detect_is_seekable()
/PHP-7.4/ext/ftp/
H A Dftp.c1410 SSL *handle = NULL; in single_send() local
1415 handle = ftp->ssl_handle; in single_send()
1418 handle = ftp->data->ssl_handle; in single_send()
1425 sent = SSL_write(handle, buf, size); in single_send()
1426 err = SSL_get_error(handle, sent); in single_send()
1435 SSL_shutdown(handle); in single_send()
1511 SSL *handle = NULL; in my_recv() local
1530 handle = ftp->ssl_handle; in my_recv()
1533 handle = ftp->data->ssl_handle; in my_recv()
1537 if (handle) { in my_recv()
[all …]
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c453 static void safe_odbc_disconnect( void *handle ) in safe_odbc_disconnect() argument
457 ret = SQLDisconnect( handle ); in safe_odbc_disconnect()
460 SQLTransact( NULL, handle, SQL_ROLLBACK ); in safe_odbc_disconnect()
461 SQLDisconnect( handle ); in safe_odbc_disconnect()
/PHP-7.4/ext/pcntl/
H A Dpcntl.c1058 zval *handle; in PHP_FUNCTION() local
1094 if (Z_TYPE_P(handle) == IS_LONG) { in PHP_FUNCTION()
1095 if (Z_LVAL_P(handle) != (zend_long) SIG_DFL && Z_LVAL_P(handle) != (zend_long) SIG_IGN) { in PHP_FUNCTION()
1104 zend_hash_index_update(&PCNTL_G(php_signal_table), signo, handle); in PHP_FUNCTION()
1108 if (!zend_is_callable_ex(handle, NULL, 0, NULL, NULL, &error)) { in PHP_FUNCTION()
1109 zend_string *func_name = zend_get_callable_name(handle); in PHP_FUNCTION()
1119 handle = zend_hash_index_update(&PCNTL_G(php_signal_table), signo, handle); in PHP_FUNCTION()
1120 Z_TRY_ADDREF_P(handle); in PHP_FUNCTION()
1489 zval params[2], *handle, retval; in pcntl_signal_dispatch() local
1517 if (Z_TYPE_P(handle) != IS_LONG) { in pcntl_signal_dispatch()
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc325 $this->expectNotice($lines[1], 'ready to handle connections')
/PHP-7.4/ext/dba/
H A Ddba.c70 ZEND_ARG_INFO(0, handle)
75 ZEND_ARG_INFO(0, handle)
81 ZEND_ARG_INFO(0, handle)
89 ZEND_ARG_INFO(0, handle)
93 ZEND_ARG_INFO(0, handle)
98 ZEND_ARG_INFO(0, handle)
104 ZEND_ARG_INFO(0, handle)
110 ZEND_ARG_INFO(0, handle)
114 ZEND_ARG_INFO(0, handle)
118 ZEND_ARG_INFO(0, handle)
/PHP-7.4/sapi/litespeed/
H A Dlsapi_main.c1326 if ( file_handle.handle.fp ) { in cli_main()
1335 fclose( file_handle.handle.fp ); in cli_main()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c1085 phpdbg_out(" executing #%d currently", current->std.handle); in PHPDBG_COMMAND()
1242 DL_HANDLE handle; in phpdbg_load_module_or_extension() local
1265 handle = DL_LOAD(*path); in phpdbg_load_module_or_extension()
1267 if (!handle) { in phpdbg_load_module_or_extension()
1310 zend_register_extension(new_extension, handle); in phpdbg_load_module_or_extension()
1349 module_entry->handle = handle; in phpdbg_load_module_or_extension()
1377 DL_UNLOAD(handle); in phpdbg_load_module_or_extension()
1435 FILE *handle = VCWD_FOPEN(param->str, "w+"); in PHPDBG_COMMAND() local
1437 if (handle) { in PHPDBG_COMMAND()
1438 phpdbg_export_breakpoints(handle); in PHPDBG_COMMAND()
[all …]
/PHP-7.4/Zend/tests/
H A Dbug80781.phpt6 function handle(int $severity, string $message, string $file, int $line): bool {
14 set_error_handler('handle');
30 #0 %s(%d): handle(2, 'Illegal offset ...', %s, %d, Array)
/PHP-7.4/ext/spl/
H A Dspl_array.c353 … ID#%d used as offset, casting to integer (%d)", Z_RES_P(offset)->handle, Z_RES_P(offset)->handle); in spl_array_get_dimension_ptr()
354 index = Z_RES_P(offset)->handle; in spl_array_get_dimension_ptr()
/PHP-7.4/ext/soap/
H A Dphp_sdl.c3386 void delete_sdl_impl(void *handle) in delete_sdl_impl() argument
3388 sdlPtr tmp = (sdlPtr)handle; in delete_sdl_impl()
3424 void delete_sdl(void *handle) in delete_sdl() argument
3426 sdlPtr tmp = (sdlPtr)handle; in delete_sdl()

Completed in 168 milliseconds

12345678910>>...26