Home
last modified time | relevance | path

Searched refs:handlers (Results 1 – 25 of 86) sorted by path

1234

/PHP-5.5/
H A D.gdbinit70 set $handlers = $t->object.value.obj.handlers
73 if $handlers->get_class_entry == &zend_std_object_get_class
76 if $handlers.get_class_name
77 if $handlers.get_class_name != &zend_std_object_get_class_name
218 set $handlers = $zvalue->value.obj.handlers
224 if $handlers->get_class_entry == &zend_std_object_get_class
231 if $handlers->get_properties == &zend_std_get_properties
H A DNEWS2106 . Dropped support for LOAD DATA LOCAL INFILE handlers when using libmysql.
3182 . Changed error handlers to only generate docref links when the docref_root
3249 . Added ability to reset user opcode handlers (Yoram).
3478 . Added support for object-oriented session handlers. (Arpad)
6220 - Fixed bug #46241 (stacked error handlers, internal error handling in general).
9054 - Added user opcode API that allow overloading of opcode handlers. (Dmitry)
H A DREADME.NEW-OUTPUT-API117 or handlers implemented in C to be used with ob_start() can contain a non-global
H A DUPGRADING218 that do not define custom handlers, and was never intended for the use
/PHP-5.5/Zend/
H A DOBJECTS2_HOWTO31 The handlers add_ref and del_ref are called when a new zval referring
68 get and set handlers are used when engine needs to access the object
98 different object types (i.e., having different handlers) can not be
109 Objects - data structures and handlers
116 zend_object_handlers *handlers;
H A DREADME.ZEND_VM4 ZEND_VM architecture allows specializing opcode handlers according to op_type
13 find opcode handlers and helpers. The typical opcode handler template looks
27 <HANDLER'S CODE> is a handler's code itself. For most handlers it stills the
106 function handlers. By default Zend Engine II uses the specialized one but you
H A Dzend_alloc.c165 ret = storage->handlers->_alloc(storage, size); in zend_mm_mem_mmap_realloc()
168 storage->handlers->_free(storage, segment); in zend_mm_mem_mmap_realloc()
320 # define ZEND_MM_STORAGE_DTOR() heap->storage->handlers->dtor(heap->storage)
1087 storage = handlers->init(params); in zend_mm_startup_ex()
1089 fprintf(stderr, "Cannot initialize zend_mm storage [%s]\n", handlers->name); in zend_mm_startup_ex()
1096 storage->handlers = handlers; in zend_mm_startup_ex()
1169 const zend_mm_mem_handlers *handlers; in zend_mm_startup() local
1197 handlers = &mem_handlers[i]; in zend_mm_startup()
1221 heap = zend_mm_startup_ex(handlers, seg_size, ZEND_MM_RESERVE_SIZE, 0, NULL); in zend_mm_startup()
1686 storage->handlers->dtor(storage); in zend_mm_shutdown()
[all …]
H A Dzend_alloc.h229 const zend_mm_mem_handlers *handlers; member
233 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, …
H A Dzend_closures.c278 object.handlers = &closure_handlers; in zend_closure_new()
H A Dzend_gc.c235 newRoot->u.handlers = Z_OBJ_HT_P(zv); in gc_zobj_possible_root()
487 Z_OBJ_HT(z) = current->u.handlers; in gc_mark_roots()
619 Z_OBJ_HT(z) = current->u.handlers; in gc_scan_roots()
762 Z_OBJ_HT(z) = current->u.handlers; in gc_collect_roots()
H A Dzend_gc.h87 const zend_object_handlers *handlers; member
H A Dzend_generators.c234 object.handlers = &zend_generator_handlers; in zend_generator_create()
H A Dzend_objects.c104 if (!obj_bucket->bucket.obj.handlers) { in zend_objects_destroy_object()
105 obj_bucket->bucket.obj.handlers = &std_object_handlers; in zend_objects_destroy_object()
107 Z_OBJ_HT_P(obj) = obj_bucket->bucket.obj.handlers; in zend_objects_destroy_object()
151 retval.handlers = &std_object_handlers; in zend_objects_new()
H A Dzend_objects_API.c133 obj->handlers = NULL; in zend_objects_store_put()
187 …ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC) /* {{{… in zend_objects_store_del_ref_by_handle_ex()
208 if (handlers && !obj->handlers) { in zend_objects_store_del_ref_by_handle_ex()
209 obj->handlers = handlers; in zend_objects_store_del_ref_by_handle_ex()
268 retval.handlers = Z_OBJ_HT_P(zobject); in zend_objects_store_clone_obj()
269 EG(objects_store).object_buckets[handle].bucket.obj.handlers = retval.handlers; in zend_objects_store_clone_obj()
310 obj_bucket->bucket.obj.handlers = Z_OBJ_HT_P(zobject);; in zend_object_store_ctor_failed()
H A Dzend_objects_API.h41 const zend_object_handlers *handlers; member
71 …re_del_ref_by_handle_ex(zend_object_handle handle, const zend_object_handlers *handlers TSRMLS_DC);
H A Dzend_operators.h448 #define Z_OBJ_HT(zval) Z_OBJVAL(zval).handlers
H A Dzend_signal.c162 zend_signal_entry_t p_sig = SIGG(handlers)[signo-1]; in zend_signal_handler()
181 SIGG(handlers)[signo-1].flags = 0; in zend_signal_handler() local
182 SIGG(handlers)[signo-1].handler = SIG_DFL; in zend_signal_handler() local
201 oldact->sa_flags = SIGG(handlers)[signo-1].flags; in zend_sigaction()
202 oldact->sa_handler = (void *) SIGG(handlers)[signo-1].handler; in zend_sigaction()
206 SIGG(handlers)[signo-1].flags = act->sa_flags; in zend_sigaction() local
208 SIGG(handlers)[signo-1].handler = (void *) act->sa_sigaction; in zend_sigaction() local
210 SIGG(handlers)[signo-1].handler = (void *) act->sa_handler; in zend_sigaction() local
258 SIGG(handlers)[signo-1].flags = sa.sa_flags; in zend_signal_register() local
260 SIGG(handlers)[signo-1].handler = (void *)sa.sa_sigaction; in zend_signal_register() local
[all …]
H A Dzend_signal.h63 zend_signal_entry_t handlers[NSIG]; member
H A Dzend_types.h59 const zend_object_handlers *handlers; member
/PHP-5.5/Zend/tests/
H A Dclosure_031.phpt2 Closure 031: Closure properties with custom error handlers
H A Dgc_024.phpt2 GC 024: GC and objects with non-standard handlers
H A Dobject_handlers.phpt2 Magic object handlers segfaults and memory errors
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c680 retval.handlers = &php_com_object_handlers; in php_com_object_new()
H A Dcom_misc.c65 z->value.obj.handlers = &php_com_object_handlers; in php_com_wrap_dispatch()
90 z->value.obj.handlers = &php_com_object_handlers; in php_com_wrap_variant()
H A Dcom_persist.c747 retval.handlers = &helper_handlers; in helper_new()

Completed in 91 milliseconds

1234