file_sources      226 sapi/phpdbg/phpdbg.c 	zend_hash_destroy(&PHPDBG_G(file_sources));
file_sources      502 sapi/phpdbg/phpdbg.c 	HashTable *files = &PHPDBG_G(file_sources);
file_sources      574 sapi/phpdbg/phpdbg.c 		phpdbg_file_source *source = zend_hash_find_ptr(&PHPDBG_G(file_sources), name);
file_sources      272 sapi/phpdbg/phpdbg.h 	HashTable file_sources;
file_sources      250 sapi/phpdbg/phpdbg_bp.c 	phpdbg_debug("file path: %s, resolved path: %s, was compiled: %d\n", original_path, path, zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_len));
file_sources      252 sapi/phpdbg/phpdbg_bp.c 	if (!zend_hash_str_exists(&PHPDBG_G(file_sources), path, path_len)) {
file_sources      291 sapi/phpdbg/phpdbg_bp.c 			ZEND_HASH_FOREACH_STR_KEY(&PHPDBG_G(file_sources), file) {
file_sources      139 sapi/phpdbg/phpdbg_list.c 	if (!(data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), abspath, strlen(abspath)))) {
file_sources      286 sapi/phpdbg/phpdbg_list.c 	zend_hash_str_add_ptr(&PHPDBG_G(file_sources), filename, strlen(filename), dataptr);
file_sources      311 sapi/phpdbg/phpdbg_list.c 	dataptr = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), filename, strlen(filename));
file_sources      356 sapi/phpdbg/phpdbg_list.c 	zend_hash_add_ptr(&PHPDBG_G(file_sources), fake_name, dataptr);
file_sources      384 sapi/phpdbg/phpdbg_list.c 	zend_hash_init(&PHPDBG_G(file_sources), 1, NULL, (dtor_func_t) phpdbg_free_file_source, 0);