Home
last modified time | relevance | path

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

/php-src/ext/intl/calendar/
H A Dcalendar_class.cpp139 HashTable *debug_info; in Calendar_get_debug_info() local
143 debug_info = zend_new_array(8); in Calendar_get_debug_info()
150 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in Calendar_get_debug_info()
151 return debug_info; in Calendar_get_debug_info()
154 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in Calendar_get_debug_info()
157 zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &zv); in Calendar_get_debug_info()
173 zend_hash_str_update(debug_info, "timeZone", sizeof("timeZone") - 1, &ztz_debug); in Calendar_get_debug_info()
181 zend_hash_str_update(debug_info, "locale", sizeof("locale") - 1, &zv); in Calendar_get_debug_info()
184 zend_hash_str_update(debug_info, "locale", sizeof("locale") - 1, &zv); in Calendar_get_debug_info()
203 zend_hash_str_update(debug_info, "fields", sizeof("fields") - 1, &zfields); in Calendar_get_debug_info()
[all …]
/php-src/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp125 HashTable *debug_info; in BreakIterator_get_debug_info() local
131 debug_info = zend_new_array(8); in BreakIterator_get_debug_info()
138 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &val); in BreakIterator_get_debug_info()
139 return debug_info; in BreakIterator_get_debug_info()
142 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &val); in BreakIterator_get_debug_info()
146 zend_hash_str_update(debug_info, "text", sizeof("text") - 1, &val); in BreakIterator_get_debug_info()
149 zend_hash_str_update(debug_info, "text", sizeof("text") - 1, &bio->text); in BreakIterator_get_debug_info()
153 zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &val); in BreakIterator_get_debug_info()
155 return debug_info; in BreakIterator_get_debug_info()
/php-src/ext/intl/timezone/
H A Dtimezone_class.cpp285 HashTable *debug_info; in TimeZone_get_debug_info() local
290 debug_info = zend_new_array(8); in TimeZone_get_debug_info()
297 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in TimeZone_get_debug_info()
298 return debug_info; in TimeZone_get_debug_info()
302 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &zv); in TimeZone_get_debug_info()
308 return debug_info; in TimeZone_get_debug_info()
311 zend_hash_str_update(debug_info, "id", sizeof("id") - 1, &zv); in TimeZone_get_debug_info()
317 return debug_info; in TimeZone_get_debug_info()
321 zend_hash_str_update(debug_info,"rawOffset", sizeof("rawOffset") - 1, &zv); in TimeZone_get_debug_info()
323 zend_hash_str_update(debug_info,"currentOffset", sizeof("currentOffset") - 1, &zv); in TimeZone_get_debug_info()
[all …]
/php-src/ext/spl/
H A Dspl_functions.c84 HashTable *debug_info, in spl_set_private_debug_info_property() argument
95 zend_hash_update(debug_info, mangled_named, value); in spl_set_private_debug_info_property()
H A Dspl_functions.h32 …nd_class_entry *ce, const char *property, size_t property_len, HashTable *debug_info, zval *value);
H A Dspl_heap.c509 HashTable *debug_info; in spl_heap_object_get_debug_info() local
513 debug_info = zend_new_array(zend_hash_num_elements(properties) + 3); in spl_heap_object_get_debug_info()
514 zend_hash_copy(debug_info, properties, (copy_ctor_func_t) zval_add_ref); in spl_heap_object_get_debug_info()
517 spl_set_private_debug_info_property(ce, "flags", strlen("flags"), debug_info, &tmp); in spl_heap_object_get_debug_info()
520 spl_set_private_debug_info_property(ce, "isCorrupted", strlen("isCorrupted"), debug_info, &tmp); in spl_heap_object_get_debug_info()
537 spl_set_private_debug_info_property(ce, "heap", strlen("heap"), debug_info, &heap_array); in spl_heap_object_get_debug_info()
539 return debug_info; in spl_heap_object_get_debug_info()
H A Dspl_dllist.c429 HashTable *debug_info; in spl_dllist_object_get_debug_info() local
433 debug_info = zend_new_array(zend_hash_num_elements(properties) + 2); in spl_dllist_object_get_debug_info()
434 zend_hash_copy(debug_info, properties, (copy_ctor_func_t) zval_add_ref); in spl_dllist_object_get_debug_info()
437 …rivate_debug_info_property(spl_ce_SplDoublyLinkedList, "flags", strlen("flags"), debug_info, &tmp); in spl_dllist_object_get_debug_info()
454 …g_info_property(spl_ce_SplDoublyLinkedList, "dllist", strlen("dllist"), debug_info, &dllist_array); in spl_dllist_object_get_debug_info()
456 return debug_info; in spl_dllist_object_get_debug_info()
H A Dspl_observer.c328 HashTable *debug_info; in spl_object_storage_debug_info() local
332 debug_info = zend_new_array(zend_hash_num_elements(props) + 1); in spl_object_storage_debug_info()
333 zend_hash_copy(debug_info, props, (copy_ctor_func_t)zval_add_ref); in spl_object_storage_debug_info()
349 …e_debug_info_property(spl_ce_SplObjectStorage, "storage", strlen("storage"), debug_info, &storage); in spl_object_storage_debug_info()
351 return debug_info; in spl_object_storage_debug_info()
H A Dspl_directory.c602 HashTable *debug_info; in spl_filesystem_object_get_debug_info() local
606 debug_info = zend_array_dup(zend_std_get_properties_ex(&intern->std)); in spl_filesystem_object_get_debug_info()
617 …spl_set_private_debug_info_property(spl_ce_SplFileInfo, "pathName", strlen("pathName"), debug_info in spl_filesystem_object_get_debug_info()
631 …_private_debug_info_property(spl_ce_SplFileInfo, "fileName", strlen("fileName"), debug_info, &tmp); in spl_filesystem_object_get_debug_info()
640 …spl_set_private_debug_info_property(spl_ce_DirectoryIterator, "glob", strlen("glob"), debug_info, … in spl_filesystem_object_get_debug_info()
647 …roperty(spl_ce_RecursiveDirectoryIterator, "subPathName", strlen("subPathName"), debug_info, &tmp); in spl_filesystem_object_get_debug_info()
651 …rivate_debug_info_property(spl_ce_SplFileObject, "openMode", strlen("openMode"), debug_info, &tmp); in spl_filesystem_object_get_debug_info()
654 …vate_debug_info_property(spl_ce_SplFileObject, "delimiter", strlen("delimiter"), debug_info, &tmp); in spl_filesystem_object_get_debug_info()
657 …vate_debug_info_property(spl_ce_SplFileObject, "enclosure", strlen("enclosure"), debug_info, &tmp); in spl_filesystem_object_get_debug_info()
660 return debug_info; in spl_filesystem_object_get_debug_info()
H A Dspl_array.c777 HashTable *debug_info; in spl_array_get_debug_info() local
779 debug_info = zend_new_array(zend_hash_num_elements(properties) + 1); in spl_array_get_debug_info()
780 zend_hash_copy(debug_info, properties, (copy_ctor_func_t) zval_add_ref); in spl_array_get_debug_info()
788 …spl_set_private_debug_info_property(base_class_ce, "storage", strlen("storage"), debug_info, stora… in spl_array_get_debug_info()
790 return debug_info; in spl_array_get_debug_info()
/php-src/Zend/
H A Dzend_closures.c585 HashTable *debug_info; in zend_closure_get_debug_info() local
590 debug_info = zend_new_array(8); in zend_closure_get_debug_info()
605 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_FUNCTION), &val); in zend_closure_get_debug_info()
608 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_NAME), &val); in zend_closure_get_debug_info()
611 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_FILE), &val); in zend_closure_get_debug_info()
614 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_LINE), &val); in zend_closure_get_debug_info()
636 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_STATIC), &val); in zend_closure_get_debug_info()
644 zend_hash_update(debug_info, ZSTR_KNOWN(ZEND_STR_THIS), &closure->this_ptr); in zend_closure_get_debug_info()
676 zend_hash_str_update(debug_info, "parameter", sizeof("parameter")-1, &val); in zend_closure_get_debug_info()
679 return debug_info; in zend_closure_get_debug_info()
/php-src/ext/xmlreader/
H A Dphp_xmlreader.c184 HashTable *debug_info = zend_array_dup(std_props); in xmlreader_get_debug_info() local
193 zend_hash_update(debug_info, string_key, &value); in xmlreader_get_debug_info()
197 return debug_info; in xmlreader_get_debug_info()
/php-src/ext/dom/
H A Dphp_dom.c493 HashTable *debug_info, in dom_get_debug_info_helper() local
503 debug_info = zend_array_dup(std_props); in dom_get_debug_info_helper()
506 return debug_info; in dom_get_debug_info_helper()
528 zend_hash_update(debug_info, string_key, &value); in dom_get_debug_info_helper()
535 return debug_info; in dom_get_debug_info_helper()
/php-src/ext/opcache/jit/ir/
H A Dir_gdb.c255 SECTDEF(debug_info, PROGBITS, 1); in ir_gdbjit_secthdr()

Completed in 66 milliseconds