Searched refs:file_sources (Results 1 – 5 of 5) sorted by relevance
/php-src/sapi/phpdbg/ |
H A D | phpdbg_list.c | 135 if (!(data = zend_hash_find_ptr(&PHPDBG_G(file_sources), filename))) { in phpdbg_list_file() 270 zend_hash_del(&PHPDBG_G(file_sources), ret->filename); in phpdbg_compile_file() 271 zend_hash_add_ptr(&PHPDBG_G(file_sources), ret->filename, dataptr); in phpdbg_compile_file() 301 dataptr = zend_hash_find_ptr(&PHPDBG_G(file_sources), op_array->filename); in phpdbg_init_compile_file() 346 zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr); in phpdbg_compile_string()
|
H A D | phpdbg.h | 277 HashTable file_sources; variable
|
H A D | phpdbg_prompt.c | 534 phpdbg_file_source *data = zend_hash_find_ptr(&PHPDBG_G(file_sources), source_path); in phpdbg_compile_stdin() 535 dtor_func_t dtor = PHPDBG_G(file_sources).pDestructor; in phpdbg_compile_stdin() 536 PHPDBG_G(file_sources).pDestructor = NULL; in phpdbg_compile_stdin() 537 zend_hash_del(&PHPDBG_G(file_sources), source_path); in phpdbg_compile_stdin() 538 PHPDBG_G(file_sources).pDestructor = dtor; in phpdbg_compile_stdin() 539 …zend_hash_str_update_ptr(&PHPDBG_G(file_sources), "Standard input code", sizeof("Standard input co… in phpdbg_compile_stdin()
|
H A D | phpdbg.c | 169 zend_hash_init(&PHPDBG_G(file_sources), 0, NULL, php_phpdbg_destroy_file_source, 0); in PHP_MINIT_FUNCTION() 502 HashTable *files = &PHPDBG_G(file_sources); in PHP_FUNCTION() 574 phpdbg_file_source *source = zend_hash_find_ptr(&PHPDBG_G(file_sources), name); in PHP_FUNCTION() 790 zend_hash_destroy(&PHPDBG_G(file_sources)); in php_sapi_phpdbg_deactivate() 1675 …phpdbg_file_source *data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(exec), PHPDBG_… in main()
|
H A D | phpdbg_bp.c | 274 … compiled: %d\n", original_path, path, zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_le… in phpdbg_set_breakpoint_file() 276 if (!zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_len)) { in phpdbg_set_breakpoint_file() 315 ZEND_HASH_MAP_FOREACH_STR_KEY(&PHPDBG_G(file_sources), file) { in phpdbg_set_breakpoint_file()
|
Completed in 28 milliseconds