Searched refs:debug_info (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/Zend/ |
H A D | zend_closures.c | 41 HashTable *debug_info; member 254 if (closure->debug_info != NULL) { in zend_closure_free_storage() 255 zend_hash_destroy(closure->debug_info); in zend_closure_free_storage() 256 efree(closure->debug_info); in zend_closure_free_storage() 329 if (closure->debug_info == NULL) { in zend_closure_get_debug_info() 330 ALLOC_HASHTABLE(closure->debug_info); in zend_closure_get_debug_info() 331 zend_hash_init(closure->debug_info, 1, NULL, ZVAL_PTR_DTOR, 0); in zend_closure_get_debug_info() 333 if (closure->debug_info->nApplyCount == 0) { in zend_closure_get_debug_info() 339 …zend_hash_update(closure->debug_info, "static", sizeof("static"), (void *) &val, sizeof(zval *), N… in zend_closure_get_debug_info() 371 …zend_hash_update(closure->debug_info, "parameter", sizeof("parameter"), (void *) &val, sizeof(zval… in zend_closure_get_debug_info() [all …]
|
/PHP-5.4/ext/spl/ |
H A D | spl_dllist.c | 98 HashTable *debug_info; member 356 if (intern->debug_info != NULL) { in spl_dllist_object_free_storage() 357 zend_hash_destroy(intern->debug_info); in spl_dllist_object_free_storage() 358 efree(intern->debug_info); in spl_dllist_object_free_storage() 383 intern->debug_info = NULL; in spl_dllist_object_new_ex() 517 if (intern->debug_info == NULL) { in spl_dllist_object_get_debug_info() 518 ALLOC_HASHTABLE(intern->debug_info); in spl_dllist_object_get_debug_info() 519 zend_hash_init(intern->debug_info, 1, NULL, ZVAL_PTR_DTOR, 0); in spl_dllist_object_get_debug_info() 522 if (intern->debug_info->nApplyCount == 0) { in spl_dllist_object_get_debug_info() 524 Z_ARRVAL(zrv) = intern->debug_info; in spl_dllist_object_get_debug_info() [all …]
|
H A D | spl_heap.c | 79 HashTable *debug_info; member 375 if (intern->debug_info != NULL) { in spl_heap_object_free_storage() 376 zend_hash_destroy(intern->debug_info); in spl_heap_object_free_storage() 377 efree(intern->debug_info); in spl_heap_object_free_storage() 400 intern->debug_info = NULL; in spl_heap_object_new_ex() 535 if (intern->debug_info == NULL) { in spl_heap_object_get_debug_info_helper() 536 ALLOC_HASHTABLE(intern->debug_info); in spl_heap_object_get_debug_info_helper() 537 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(intern->std.properties) + 1, 0); in spl_heap_object_get_debug_info_helper() 540 if (intern->debug_info->nApplyCount == 0) { in spl_heap_object_get_debug_info_helper() 542 Z_ARRVAL(zrv) = intern->debug_info; in spl_heap_object_get_debug_info_helper() [all …]
|
H A D | spl_observer.c | 88 HashTable *debug_info; member 105 if (intern->debug_info != NULL) { in spl_SplOjectStorage_free_storage() 106 zend_hash_destroy(intern->debug_info); in spl_SplOjectStorage_free_storage() 107 efree(intern->debug_info); in spl_SplOjectStorage_free_storage() 329 if (intern->debug_info == NULL) { in spl_object_storage_debug_info() 330 ALLOC_HASHTABLE(intern->debug_info); in spl_object_storage_debug_info() 331 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(props) + 1, 0); in spl_object_storage_debug_info() 334 if (intern->debug_info->nApplyCount == 0) { in spl_object_storage_debug_info() 335 …zend_hash_copy(intern->debug_info, props, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(z… in spl_object_storage_debug_info() 355 zend_symtable_update(intern->debug_info, zname, name_len+1, &storage, sizeof(zval *), NULL); in spl_object_storage_debug_info() [all …]
|
H A D | spl_array.c | 79 HashTable *debug_info; member 155 if (intern->debug_info != NULL) { in spl_array_object_free_storage() 156 zend_hash_destroy(intern->debug_info); in spl_array_object_free_storage() 157 efree(intern->debug_info); in spl_array_object_free_storage() 184 intern->debug_info = NULL; in spl_array_object_new_ex() 811 if (intern->debug_info == NULL) { in spl_array_get_debug_info() 812 ALLOC_HASHTABLE(intern->debug_info); in spl_array_get_debug_info() 816 if (intern->debug_info->nApplyCount == 0) { in spl_array_get_debug_info() 817 zend_hash_clean(intern->debug_info); in spl_array_get_debug_info() 825 zend_symtable_update(intern->debug_info, zname, name_len+1, &storage, sizeof(zval *), NULL); in spl_array_get_debug_info() [all …]
|
/PHP-5.4/ext/dom/ |
H A D | php_dom.c | 472 HashTable *debug_info, in dom_get_debug_info_helper() local 482 ALLOC_HASHTABLE(debug_info); in dom_get_debug_info_helper() 483 ZEND_INIT_SYMTABLE_EX(debug_info, 32, 0); in dom_get_debug_info_helper() 486 zend_hash_copy(debug_info, std_props, (copy_ctor_func_t)zval_add_ref, in dom_get_debug_info_helper() 490 return debug_info; in dom_get_debug_info_helper() 533 zend_hash_add(debug_info, string_key, string_length, in dom_get_debug_info_helper() 540 return debug_info; in dom_get_debug_info_helper()
|
Completed in 28 milliseconds