Searched defs:obj_file (Results 1 - 2 of 2) sorted by relevance

/external/google-breakpad/src/common/linux/
H A Ddump_symbols.cc367 bool LoadELF(const string& obj_file, MmapWrapper* map_wrapper, argument
369 int obj_fd = open(obj_file.c_str(), O_RDONLY);
372 obj_file.c_str(), strerror(errno));
379 obj_file.c_str(), strerror(errno));
386 obj_file.c_str(), strerror(errno));
392 fprintf(stderr, "Not a valid ELF file: %s\n", obj_file.c_str());
430 const string& obj_file,
443 if (!realpath(obj_file.c_str(), obj_file_abspath)) {
444 fprintf(stderr, "Cannot resolve absolute path for %s\n", obj_file.c_str());
501 obj_file
427 ReadDebugLink(const char* debuglink, const size_t debuglink_size, const bool big_endian, const string& obj_file, const std::vector<string>& debug_dirs) argument
585 LoadSymbols(const string& obj_file, const bool big_endian, const typename ElfClass::Ehdr* elf_header, const bool read_gnu_debug_link, LoadSymbolsInfo<ElfClass>* info, const DumpOptions& options, Module* module) argument
925 ReadSymbolDataInternal(const uint8_t* obj_file, const string& obj_filename, const std::vector<string>& debug_dirs, const DumpOptions& options, Module** module) argument
950 WriteSymbolFile(const string &obj_file, const std::vector<string>& debug_dirs, const DumpOptions& options, std::ostream &sym_stream) argument
963 ReadSymbolData(const string& obj_file, const std::vector<string>& debug_dirs, const DumpOptions& options, Module** module) argument
[all...]
/external/google-breakpad/src/common/solaris/
H A Ddump_symbols.cc482 bool WriteModuleInfo(int fd, GElf_Half arch, const std::string &obj_file) { argument
496 google_breakpad::FileID file_id(obj_file.c_str());
501 std::string filename = obj_file;
502 size_t slash_pos = obj_file.find_last_of("/");
504 filename = obj_file.substr(slash_pos + 1);
639 bool DumpSymbols::WriteSymbolFile(const std::string &obj_file, int sym_fd) { argument
645 int obj_fd = open(obj_file.c_str(), O_RDONLY);
674 if (WriteModuleInfo(sym_fd, elf_header.e_machine, obj_file) &&

Completed in 422 milliseconds