Home
last modified time | relevance | path

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

12

/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.h42 llist_dtor_func_t dtor; member
50 ZEND_API void zend_llist_init(zend_llist *l, size_t size, llist_dtor_func_t dtor, unsigned char per…
H A Dzend_iterators.h36 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/ext/mysqli/tests/
H A Dgh8058.phpt21 unset($stmt); // trigger dtor
28 unset($stmt); // trigger dtor
H A Dbug36949.phpt2 Bug #36949 (invalid internal mysqli objects dtor)
/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/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.c50 spl_ptr_heap_dtor_func dtor; member
251 …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
255 heap->dtor = dtor; in spl_ptr_heap_init()
315 heap->dtor(spl_heap_elem(heap, 0)); in spl_ptr_heap_delete_top()
353 heap->dtor = from->dtor; in spl_ptr_heap_clone()
381 heap->dtor(spl_heap_elem(heap, i)); in spl_ptr_heap_destroy()
H A Dspl_directory.h41 spl_foreign_dtor_t dtor; member
/php-src/Zend/tests/fibers/
H A Ddestructors_005.phpt22 /* Fiber will be dtor during shutdown */
/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…
H A Doutput.c520 PHPAPI void php_output_handler_set_context(php_output_handler *handler, void *opaq, void (*dtor)(vo… in php_output_handler_set_context()
522 if (handler->dtor && handler->opaq) { in php_output_handler_set_context()
523 handler->dtor(handler->opaq); in php_output_handler_set_context()
525 handler->dtor = dtor; in php_output_handler_set_context()
710 if (handler->dtor && handler->opaq) { in php_output_handler_dtor()
711 handler->dtor(handler->opaq); in php_output_handler_dtor()
/php-src/ext/mysqlnd/
H A Dmysqlnd_driver.c149 new_object->m->dtor(new_object); in MYSQLND_METHOD()
179 new_object->m->dtor(new_object); in MYSQLND_METHOD()

Completed in 41 milliseconds

12