Lines Matching refs:PHPDBG_G
51 if (!PHPDBG_G(exec) && !zend_is_executing()) { in PHPDBG_LIST()
137 if (!(data = zend_hash_find_ptr(&PHPDBG_G(file_sources), filename))) { in phpdbg_list_file()
243 return PHPDBG_G(compile_file)(file, type); in phpdbg_compile_file()
273 ret = PHPDBG_G(compile_file)(&fake, type); in phpdbg_compile_file()
286 zend_hash_add_ptr(&PHPDBG_G(file_sources), ret->filename, dataptr); in phpdbg_compile_file()
316 op_array = PHPDBG_G(init_compile_file)(file, type); in phpdbg_init_compile_file()
322 dataptr = zend_hash_find_ptr(&PHPDBG_G(file_sources), op_array->filename); in phpdbg_init_compile_file()
340 if (PHPDBG_G(flags) & PHPDBG_IN_EVAL) { in phpdbg_compile_string()
341 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
356 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
367 zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr); in phpdbg_compile_string()
392 PHPDBG_G(compile_file) = zend_compile_file; in phpdbg_init_list()
393 PHPDBG_G(compile_string) = zend_compile_string; in phpdbg_init_list()
394 zend_hash_init(&PHPDBG_G(file_sources), 1, NULL, (dtor_func_t) phpdbg_free_file_source, 0); in phpdbg_init_list()
400 PHPDBG_G(init_compile_file) = zend_compile_file; in phpdbg_list_update()