Home
last modified time | relevance | path

Searched refs:dtor (Results 1 – 25 of 53) sorted by relevance

123

/php-src/Zend/tests/fibers/
H A Dno-switch-dtor-start.phpt15 …ught FiberError: Cannot switch fibers in current execution context in %sno-switch-dtor-start.php:%d
17 #0 %sno-switch-dtor-start.php(%d): Fiber->start()
18 #1 %sno-switch-dtor-start.php(%d): class@anonymous->__destruct()
20 thrown in %sno-switch-dtor-start.php on line %d
H A Dno-switch-dtor-suspend.phpt18 …ht FiberError: Cannot switch fibers in current execution context in %sno-switch-dtor-suspend.php:%d
20 #0 %sno-switch-dtor-suspend.php(%d): Fiber::suspend()
22 #2 %sno-switch-dtor-suspend.php(%d): Fiber->start()
24 thrown in %sno-switch-dtor-suspend.php on line %d
H A Dno-switch-dtor-resume.phpt25 …ght FiberError: Cannot switch fibers in current execution context in %sno-switch-dtor-resume.php:%d
27 #0 %sno-switch-dtor-resume.php(%d): Fiber->resume(1)
28 #1 %sno-switch-dtor-resume.php(%d): class@anonymous->__destruct()
30 thrown in %sno-switch-dtor-resume.php on line %d
H A Dno-switch-dtor-throw.phpt25 …ught FiberError: Cannot switch fibers in current execution context in %sno-switch-dtor-throw.php:%d
27 #0 %sno-switch-dtor-throw.php(%d): Fiber->throw(Object(Error))
28 #1 %sno-switch-dtor-throw.php(%d): class@anonymous->__destruct()
30 thrown in %sno-switch-dtor-throw.php on line %d
/php-src/Zend/
H A Dzend_llist.c24 ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char per… in zend_llist_init() argument
30 l->dtor = dtor; in zend_llist_init()
81 if ((l)->dtor) {\
82 (l)->dtor((current)->data);\
108 if (l->dtor) { in zend_llist_destroy()
109 l->dtor(current->data); in zend_llist_destroy()
144 if (l->dtor) { in zend_llist_remove_tail()
145 l->dtor(old_tail->data); in zend_llist_remove_tail()
155 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
H A Dzend_llist.h40 llist_dtor_func_t dtor; member
48 ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char per…
H A Dzend_iterators.h31 void (*dtor)(zend_object_iterator *iter); member
H A Dzend_iterators.c66 iter->funcs->dtor(iter); in iter_wrapper_free()
/php-src/Zend/tests/generators/
H A Dyield_from_throw_with_throwing_exception.phpt9 throw new Exception("dtor");
22 Next Exception: dtor in %s:%d
H A Dgc_order.phpt2 Close generator in dtor to avoid freeing order issues
H A Dyield_from_chain_dtor_order.phpt2 Leaf link may need to be invalidated depending on dtor order
/php-src/Zend/tests/
H A Dassign_coalesce_002.phpt42 throw new Exception("dtor");
80 dtor
83 dtor
H A Dstatic_variable_in_dynamic_function.phpt2 Static variables in dynamically declared function (first use before dynamic def dtor)
H A Dstatic_variable_in_dynamic_function_2.phpt2 Static variables in dynamically declared function (first use after dynamic def dtor)
H A Dbug24635.phpt2 Bug #24635 (crash on dtor calling other functions)
/php-src/TSRM/
H A DTSRM.c43 ts_allocate_dtor dtor; member
169 if (resource_types_table[i].dtor) { in ts_free_resources()
170 resource_types_table[i].dtor(thread_resources->storage[i]); in ts_free_resources()
277 …c_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor) in ts_allocate_id() argument
302 resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].dtor = dtor; in ts_allocate_id()
323 …_id(ts_rsrc_id *rsrc_id, size_t *offset, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor) in ts_allocate_fast_id() argument
360 resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].dtor = dtor; in ts_allocate_fast_id()
559 if (resource_types_table[rsrc_id].dtor) { in ts_free_id()
560 resource_types_table[rsrc_id].dtor(p->storage[rsrc_id]); in ts_free_id()
H A DTSRM.h91 …_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor);
95 …id(ts_rsrc_id *rsrc_id, size_t *offset, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor);
/php-src/ext/mysqli/tests/
H A Dgh8058.phpt21 unset($stmt); // trigger dtor
28 unset($stmt); // trigger dtor
/php-src/Zend/tests/generators/finally/
H A Drun_on_dtor.phpt2 finally is run on object dtor, not free
/php-src/ext/opcache/tests/
H A Dssa_bug_005.phpt9 $dtor = new class { function __destruct() { throw new Exception; } };
/php-src/ext/zend_test/tests/
H A Dgh10695_2.phpt2 GH-10695: Uncaught exception in exception handler catching resource dtor exception
/php-src/Zend/tests/try/
H A Dtry_finally_023.phpt2 Loop var dtor throwing exception during return inside try/catch inside finally
/php-src/ext/spl/
H A Dspl_heap.c52 spl_ptr_heap_dtor_func dtor; member
253 …tr_heap_cmp_func cmp, spl_ptr_heap_ctor_func ctor, spl_ptr_heap_dtor_func dtor, size_t elem_size) … in spl_ptr_heap_init() argument
257 heap->dtor = dtor; in spl_ptr_heap_init()
317 heap->dtor(spl_heap_elem(heap, 0)); in spl_ptr_heap_delete_top()
355 heap->dtor = from->dtor; in spl_ptr_heap_clone()
383 heap->dtor(spl_heap_elem(heap, i)); in spl_ptr_heap_destroy()
H A Dspl_directory.h42 spl_foreign_dtor_t dtor; member
/php-src/main/
H A Dphp_output.h130 void (*dtor)(void *opaq); member
228 PHPAPI void php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(vo…

Completed in 32 milliseconds

123