Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 7 of 7) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_closures.c41 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()
328 if (closure->debug_info == NULL) { in zend_closure_get_debug_info()
329 ALLOC_HASHTABLE(closure->debug_info); in zend_closure_get_debug_info()
330 zend_hash_init(closure->debug_info, 1, NULL, ZVAL_PTR_DTOR, 0); in zend_closure_get_debug_info()
332 if (closure->debug_info->nApplyCount == 0) { in zend_closure_get_debug_info()
338 …zend_hash_update(closure->debug_info, "static", sizeof("static"), (void *) &val, sizeof(zval *), N… in zend_closure_get_debug_info()
370 …zend_hash_update(closure->debug_info, "parameter", sizeof("parameter"), (void *) &val, sizeof(zval… in zend_closure_get_debug_info()
[all …]
/PHP-5.5/ext/spl/
H A Dspl_dllist.c98 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 Dspl_heap.c79 HashTable *debug_info; member
376 if (intern->debug_info != NULL) { in spl_heap_object_free_storage()
377 zend_hash_destroy(intern->debug_info); in spl_heap_object_free_storage()
378 efree(intern->debug_info); in spl_heap_object_free_storage()
401 intern->debug_info = NULL; in spl_heap_object_new_ex()
536 if (intern->debug_info == NULL) { in spl_heap_object_get_debug_info_helper()
537 ALLOC_HASHTABLE(intern->debug_info); in spl_heap_object_get_debug_info_helper()
538 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(intern->std.properties) + 1, 0); in spl_heap_object_get_debug_info_helper()
541 if (intern->debug_info->nApplyCount == 0) { in spl_heap_object_get_debug_info_helper()
543 Z_ARRVAL(zrv) = intern->debug_info; in spl_heap_object_get_debug_info_helper()
[all …]
H A Dspl_observer.c88 HashTable *debug_info; member
107 if (intern->debug_info != NULL) { in spl_SplOjectStorage_free_storage()
108 zend_hash_destroy(intern->debug_info); in spl_SplOjectStorage_free_storage()
109 efree(intern->debug_info); in spl_SplOjectStorage_free_storage()
334 if (intern->debug_info == NULL) { in spl_object_storage_debug_info()
335 ALLOC_HASHTABLE(intern->debug_info); in spl_object_storage_debug_info()
336 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(props) + 1, 0); in spl_object_storage_debug_info()
339 if (intern->debug_info->nApplyCount == 0) { in spl_object_storage_debug_info()
340 …zend_hash_copy(intern->debug_info, props, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(z… in spl_object_storage_debug_info()
360 zend_symtable_update(intern->debug_info, zname, name_len+1, &storage, sizeof(zval *), NULL); in spl_object_storage_debug_info()
[all …]
H A Dspl_array.c79 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.5/ext/intl/calendar/
H A Dcalendar_class.cpp177 HashTable *debug_info; in Calendar_get_debug_info() local
180 debug_info = Z_OBJ_HANDLER(ztz, get_debug_info)(&ztz, &is_tmp TSRMLS_CC); in Calendar_get_debug_info()
185 Z_ARRVAL_P(ztz_debug) = debug_info; in Calendar_get_debug_info()
/PHP-5.5/ext/dom/
H A Dphp_dom.c472 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 40 milliseconds