Lines Matching refs:file_sources
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()
550 …zend_hash_str_update_ptr(&PHPDBG_G(file_sources), "Standard input code", sizeof("Standard input co… 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()
622 zend_hash_update_ptr(&PHPDBG_G(file_sources), PHPDBG_G(ops)->filename, data); in phpdbg_compile()