Home
last modified time | relevance | path

Searched refs:debug_info_root_paths (Results 1 - 11 of 11) sorted by relevance

/third_party/libabigail/src/
H A Dabg-elf-based-reader.cc47 /// @param debug_info_root_paths a vector of paths to look into for
52 const vector<char**>& debug_info_root_paths, in elf_based_reader()
54 : elf::reader(elf_path, debug_info_root_paths, env), in elf_based_reader()
71 /// @param debug_info_root_paths a vector of paths to look into for
75 const vector<char**>& debug_info_root_paths) in reset()
77 elf::reader::reset(elf_path, debug_info_root_paths); in reset()
51 elf_based_reader(const std::string& elf_path, const vector<char**>& debug_info_root_paths, environment& env) elf_based_reader() argument
74 reset(const std::string& elf_path, const vector<char**>& debug_info_root_paths) reset() argument
H A Dabg-elf-reader.cc255 vector<char**> debug_info_root_paths; member
291 debug_info_root_paths = debug_info_roots; in initialize()
308 debug_info_root_paths.empty() in crack_open_elf_file()
310 : debug_info_root_paths.front()); in crack_open_elf_file()
346 debug_info_root_paths, in find_alt_dwarf_debug_info()
369 for (vector<char**>::const_iterator i = debug_info_root_paths.begin(); in locate_dwarf_debug_info()
370 dwarf_handle == 0 && i != debug_info_root_paths.end(); in locate_dwarf_debug_info()
402 for (const auto& path : rdr.debug_info_root_paths()) in locate_alt_ctf_debug_info()
498 reader::debug_info_root_paths() const in debug_info_root_paths() function in abigail::elf::reader
499 {return priv_->debug_info_root_paths;} in debug_info_root_paths()
[all...]
H A Dabg-tools-utils.cc441 const vector<char**>& debug_info_root_paths) in file_has_dwarf_debug_info()
448 debug_info_root_paths, in file_has_dwarf_debug_info()
477 const vector<char**>& debug_info_root_paths) in file_has_ctf_debug_info()
484 debug_info_root_paths, in file_has_ctf_debug_info()
500 for (const auto& path : debug_info_root_paths) in file_has_ctf_debug_info()
2820 /// @param debug_info_root_paths a vector of the paths where to look
2838 const vector<char**>& debug_info_root_paths, 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()
440 file_has_dwarf_debug_info(const string& elf_file_path, const vector<char**>& debug_info_root_paths) file_has_dwarf_debug_info() argument
476 file_has_ctf_debug_info(const string& elf_file_path, const vector<char**>& debug_info_root_paths) file_has_ctf_debug_info() argument
2837 create_best_elf_based_reader(const string& elf_file_path, const vector<char**>& debug_info_root_paths, environment& env, corpus::origin requested_fe_kind, bool show_all_types, bool linux_kernel_mode) create_best_elf_based_reader() argument
[all...]
H A Dabg-ctf-reader.cc214 /// @param debug_info_root_paths vector with the paths
223 const vector<char**>& debug_info_root_paths, in reader()
225 : elf_based_reader(elf_path, debug_info_root_paths, env) in reader()
255 /// @param debug_info_root_paths a vector of paths to use to look
274 const vector<char**>& debug_info_root_paths, in initialize()
280 reset(elf_path, debug_info_root_paths); in initialize()
336 for (const auto& path : debug_info_root_paths()) in find_ctfa_file()
1619 const vector<char**>& debug_info_root_paths, in create_reader()
1623 debug_info_root_paths, in create_reader()
222 reader(const string& elf_path, const vector<char**>& debug_info_root_paths, environment& env) reader() argument
273 initialize(const string& elf_path, const vector<char**>& debug_info_root_paths, bool load_all_types = false, bool linux_kernel_mode = false) initialize() argument
1618 create_reader(const std::string& elf_path, const vector<char**>& debug_info_root_paths, environment& env) create_reader() argument
H A Dabg-dwarf-reader.cc1872 /// @param debug_info_root_paths a vector of pointers to the path to
1897 const vector<char**>& debug_info_root_paths, in reader()
1902 debug_info_root_paths, in reader()
1976 /// @param debug_info_root_paths the vector of debug-info path to
1989 const vector<char**>& debug_info_root_paths, in initialize()
1993 reset(elf_path, debug_info_root_paths); in initialize()
2001 /// @param debug_info_root_paths a vector of paths where to look up
2016 const vector<char**>& debug_info_root_paths, in create()
2021 reader_sptr result(new reader(elf_path, debug_info_root_paths, in create()
15802 /// @param debug_info_root_paths
1896 reader(const string& elf_path, const vector<char**>& debug_info_root_paths, environment& environment, bool load_all_types, bool linux_kernel_mode) reader() argument
1988 initialize(const string& elf_path, const vector<char**>& debug_info_root_paths, bool load_all_types, bool linux_kernel_mode) initialize() argument
2015 create(const std::string& elf_path, const vector<char**>& debug_info_root_paths, environment& environment, bool load_all_types, bool linux_kernel_mode) create() argument
[all...]
/third_party/libabigail/include/
H A Dabg-elf-based-reader.h46 const vector<char**>& debug_info_root_paths,
54 const vector<char**>& debug_info_root_paths);
61 const vector<char**>& debug_info_root_paths,
H A Dabg-dwarf-reader.h34 const vector<char**>& debug_info_root_paths,
42 const vector<char**>& debug_info_root_paths,
48 const vector<char**>& debug_info_root_paths,
H A Dabg-tools-utils.h41 const vector<char**>& debug_info_root_paths);
43 const vector<char**>& debug_info_root_paths);
324 const vector<char**>& debug_info_root_paths,
H A Dabg-ctf-reader.h31 const vector<char**>& debug_info_root_paths,
H A Dabg-elf-reader.h80 debug_info_root_paths() const;
/third_party/libabigail/tests/
H A Dtest-symtab.cc43 const std::vector<char**> debug_info_root_paths; in read_corpus() local
45 dwarf::create_reader(absolute_path, debug_info_root_paths, in read_corpus()

Completed in 25 milliseconds