Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 429) sorted by path

12345678910>>...18

/PHP-8.0/
H A D.gdbinit208 set $handle = $zvalue->value.obj.handle
212 printf "(%s) #%d", $cname, $handle
246 printf "resource: #%d", $zvalue->value.res->handle
H A DNEWS1235 . Fixed bug #62294 (register_shutdown_function() does not correctly handle
1340 . Fixed bug #79177 (FFI doesn't handle well PHP exceptions within callback).
1443 . Fixed bug #77849 (Disable cloning of PDO handle/connection objects).
1476 . Fixed bug #80190 (ReflectionMethod::getReturnType() does not handle static
/PHP-8.0/Zend/tests/
H A Dbug32993.phpt24 ; // handle exception
H A Dbug47714.phpt7 function handle($e) {
17 $h->handle($exception);
H A Dbug54372.phpt2 Bug #54372 (Crash accessing global object itself returned from its __get() handle)
H A Dbug60536_005.phpt14 // Protected and public are handle more strict with a warning then what is
H A Dbug60738.phpt2 Bug #60738 Allow 'set_error_handler' to handle NULL
H A Dbug60738_variation.phpt2 Bug #60738 Allow 'set_error_handler' to handle NULL
H A Dbug61362.phpt2 Bug #61362 (Exception::getTraceAsString, Exception::__toString not able to handle unicode)
H A Dbug78689.phpt2 Bug #78689: Closure::fromCallable() doesn't handle [Closure, '__invoke']
H A Dbug80781.phpt6 function handle(int $severity, string $message, string $file, int $line): bool {
14 set_error_handler('handle');
H A Dconst_array_with_resource_key.phpt2 Constexpr arrays should be able to handle resource keys
/PHP-8.0/Zend/tests/traits/
H A Dproperty007.phpt14 // Protected and public are handle more strict with a warning then what is
/PHP-8.0/Zend/
H A Dzend.c76 ZEND_API zend_result (*zend_stream_open_function)(const char *filename, zend_file_handle *handle);
H A Dzend.h198 zend_result (*stream_open_function)(const char *filename, zend_file_handle *handle);
286 … ZEND_API zend_result (*zend_stream_open_function)(const char *filename, zend_file_handle *handle);
H A Dzend_API.c2659 if (module->handle && !getenv("ZEND_DONT_UNLOAD_MODULES")) { in module_destructor()
2660 DL_UNLOAD(module->handle); in module_destructor()
H A Dzend_compile.h709 #define ZEND_OP_ARRAY_EXTENSION(op_array, handle) \ argument
710 ((void**)RUN_TIME_CACHE(op_array))[handle]
H A Dzend_extensions.c31 DL_HANDLE handle; in zend_load_extension() local
33 handle = DL_LOAD(path); in zend_load_extension()
34 if (!handle) { in zend_load_extension()
82 DL_UNLOAD(handle); in zend_load_extension_handle()
98 DL_UNLOAD(handle); in zend_load_extension_handle()
114 DL_UNLOAD(handle); in zend_load_extension_handle()
125 DL_UNLOAD(handle); in zend_load_extension_handle()
133 DL_UNLOAD(handle); in zend_load_extension_handle()
156 extension.handle = handle; in zend_register_extension()
272 return handle; in zend_get_op_array_extension_handle()
[all …]
H A Dzend_extensions.h109 DL_HANDLE handle; member
150 ZEND_API zend_result zend_load_extension_handle(DL_HANDLE handle, const char *path);
151 ZEND_API void zend_register_extension(zend_extension *new_extension, DL_HANDLE handle);
H A Dzend_gc.c397 obj->ce->name->val, obj->handle); in gc_trace_ref()
1576 EG(objects_store).object_buckets[obj->handle] = SET_OBJ_INVALID(obj); in zend_gc_collect_cycles()
1588 ZEND_OBJECTS_STORE_ADD_TO_FREE_LIST(obj->handle); in zend_gc_collect_cycles()
H A Dzend_language_scanner.l545 …if (file_handle->handle.stream.handle >= (void*)file_handle && file_handle->handle.stream.handle <… in open_file_for_scanning()
547 size_t diff = (char*)file_handle->handle.stream.handle - (char*)file_handle; in open_file_for_scanning()
548 fh->handle.stream.handle = (void*)(((char*)fh) + diff); in open_file_for_scanning()
549 file_handle->handle.stream.handle = fh->handle.stream.handle; in open_file_for_scanning()
721 if (retval && file_handle.handle.stream.handle) { in compile_filename()
H A Dzend_list.c50 return zend_hash_index_del(&EG(regular_list), res->handle); in zend_list_delete()
59 zend_hash_index_del(&EG(regular_list), res->handle); in zend_list_free()
H A Dzend_modules.h97 void *handle; member
H A Dzend_object_handlers.c557 fprintf(stderr, "Read object #%d property: %s\n", zobj->handle, ZSTR_VAL(name)); in zend_std_read_property()
921 fprintf(stderr, "Ptr object #%d property: %s\n", zobj->handle, ZSTR_VAL(name)); in zend_std_get_property_ptr_ptr()
H A Dzend_objects_API.c128 int handle; in zend_objects_store_put_cold() local
134 handle = EG(objects_store).top++; in zend_objects_store_put_cold()
135 object->handle = handle; in zend_objects_store_put_cold()
136 EG(objects_store).object_buckets[handle] = object; in zend_objects_store_put_cold()
141 int handle; in zend_objects_store_put() local
147 handle = EG(objects_store).free_list_head; in zend_objects_store_put()
153 handle = EG(objects_store).top++; in zend_objects_store_put()
155 object->handle = handle; in zend_objects_store_put()
156 EG(objects_store).object_buckets[handle] = object; in zend_objects_store_put()
184 uint32_t handle = object->handle; in zend_objects_store_del() local
[all …]

Completed in 86 milliseconds

12345678910>>...18