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()
257 ret = PHPDBG_G(compile_file)(file, type); in phpdbg_compile_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()
305 op_array = PHPDBG_G(init_compile_file)(file, type); in phpdbg_init_compile_file()
311 dataptr = zend_hash_find_ptr(&PHPDBG_G(file_sources), op_array->filename); in phpdbg_init_compile_file()
329 if (PHPDBG_G(flags) & PHPDBG_IN_EVAL) { in phpdbg_compile_string()
330 return PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
345 op_array = PHPDBG_G(compile_string)(source_string, filename); in phpdbg_compile_string()
356 zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr); in phpdbg_compile_string()
369 PHPDBG_G(compile_file) = zend_compile_file; in phpdbg_init_list()
370 PHPDBG_G(compile_string) = zend_compile_string; in phpdbg_init_list()
376 PHPDBG_G(init_compile_file) = zend_compile_file; in phpdbg_list_update()