Lines Matching refs:elf_file_path
440 file_has_dwarf_debug_info(const string& elf_file_path, in file_has_dwarf_debug_info() argument
443 if (guess_file_type(elf_file_path) != FILE_TYPE_ELF) in file_has_dwarf_debug_info()
447 elf::reader r(elf_file_path, in file_has_dwarf_debug_info()
476 file_has_ctf_debug_info(const string& elf_file_path, in file_has_ctf_debug_info() argument
479 if (guess_file_type(elf_file_path) != FILE_TYPE_ELF) in file_has_ctf_debug_info()
483 elf::reader r(elf_file_path, in file_has_ctf_debug_info()
491 if (base_name(elf_file_path, vmlinux)) in file_has_ctf_debug_info()
494 if (dir_name(elf_file_path, dirname) in file_has_ctf_debug_info()
2837 create_best_elf_based_reader(const string& elf_file_path, in create_best_elf_based_reader() argument
2845 if (guess_file_type(elf_file_path) != FILE_TYPE_ELF) in create_best_elf_based_reader()
2851 if (file_has_ctf_debug_info(elf_file_path, debug_info_root_paths)) in create_best_elf_based_reader()
2852 result = ctf::create_reader(elf_file_path, debug_info_root_paths, env); in create_best_elf_based_reader()
2859 if (!file_has_dwarf_debug_info(elf_file_path, debug_info_root_paths) in create_best_elf_based_reader()
2860 && file_has_ctf_debug_info(elf_file_path, debug_info_root_paths)) in create_best_elf_based_reader()
2863 result = ctf::create_reader(elf_file_path, debug_info_root_paths, env); in create_best_elf_based_reader()
2872 result = dwarf::create_reader(elf_file_path, in create_best_elf_based_reader()