Searched refs:file_sources (Results 1 – 5 of 5) sorted by relevance
/PHP-7.2/sapi/phpdbg/ |
H A D | phpdbg_list.c | 137 if (!(data = zend_hash_find_ptr(&PHPDBG_G(file_sources), filename))) { in phpdbg_list_file() 277 zend_hash_del(&PHPDBG_G(file_sources), ret->filename); in phpdbg_compile_file() 278 zend_hash_add_ptr(&PHPDBG_G(file_sources), ret->filename, dataptr); in phpdbg_compile_file() 311 dataptr = zend_hash_find_ptr(&PHPDBG_G(file_sources), op_array->filename); in phpdbg_init_compile_file() 356 zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr); in phpdbg_compile_string()
|
H A D | phpdbg_prompt.c | 545 phpdbg_file_source *data = zend_hash_find_ptr(&PHPDBG_G(file_sources), source_path); in phpdbg_compile_stdin() 546 dtor_func_t dtor = PHPDBG_G(file_sources).pDestructor; in phpdbg_compile_stdin() 547 PHPDBG_G(file_sources).pDestructor = NULL; in phpdbg_compile_stdin() 548 zend_hash_del(&PHPDBG_G(file_sources), source_path); in phpdbg_compile_stdin() 549 PHPDBG_G(file_sources).pDestructor = dtor; in phpdbg_compile_stdin() 604 phpdbg_file_source *data = zend_hash_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(ops)->filename); in phpdbg_compile() 606 dtor_func_t dtor = PHPDBG_G(file_sources).pDestructor; in phpdbg_compile() 607 PHPDBG_G(file_sources).pDestructor = NULL; in phpdbg_compile() 608 zend_hash_del(&PHPDBG_G(file_sources), PHPDBG_G(ops)->filename); in phpdbg_compile() 609 PHPDBG_G(file_sources).pDestructor = dtor; in phpdbg_compile() [all …]
|
H A D | phpdbg.h | 281 HashTable file_sources; variable
|
H A D | phpdbg.c | 204 zend_hash_init(&PHPDBG_G(file_sources), 0, NULL, php_phpdbg_destroy_file_source, 0); in PHP_MINIT_FUNCTION() 554 HashTable *files = &PHPDBG_G(file_sources); in PHP_FUNCTION() 626 phpdbg_file_source *source = zend_hash_find_ptr(&PHPDBG_G(file_sources), name); in PHP_FUNCTION() 2102 …phpdbg_file_source *data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(exec), PHPDBG_… in main() 2159 zend_hash_destroy(&PHPDBG_G(file_sources)); in main()
|
H A D | phpdbg_bp.c | 277 … compiled: %d\n", original_path, path, zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_le… in phpdbg_set_breakpoint_file() 279 if (!zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_len)) { in phpdbg_set_breakpoint_file() 318 ZEND_HASH_FOREACH_STR_KEY(&PHPDBG_G(file_sources), file) { in phpdbg_set_breakpoint_file()
|
Completed in 39 milliseconds