Home
last modified time | relevance | path

Searched refs:obj_file (Results 1 – 25 of 36) sorted by relevance

12

/external/google-breakpad/src/common/linux/
Ddump_symbols.cc432 bool LoadELF(const string& obj_file, MmapWrapper* map_wrapper, in LoadELF() argument
434 int obj_fd = open(obj_file.c_str(), O_RDONLY); in LoadELF()
437 obj_file.c_str(), strerror(errno)); in LoadELF()
444 obj_file.c_str(), strerror(errno)); in LoadELF()
451 obj_file.c_str(), strerror(errno)); in LoadELF()
457 fprintf(stderr, "Not a valid ELF file: %s\n", obj_file.c_str()); in LoadELF()
495 const string& obj_file, in ReadDebugLink() argument
509 if (!realpath(obj_file.c_str(), obj_file_abspath)) { in ReadDebugLink()
510 fprintf(stderr, "Cannot resolve absolute path for %s\n", obj_file.c_str()); in ReadDebugLink()
568 obj_file.c_str()); in ReadDebugLink()
[all …]
Ddump_symbols.h66 const string &obj_file,
77 const string& obj_file,
85 const string& obj_file,
/external/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
DSymbolVendorWasm.cpp65 ObjectFileWasm *obj_file = in CreateInstance() local
67 if (!obj_file) in CreateInstance()
71 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
80 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
82 module_spec.GetUUID() = obj_file->GetUUID(); in CreateInstance()
88 obj_file->GetExternalDebugInfoFileSpec(); in CreateInstance()
/external/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp64 ObjectFileELF *obj_file = in CreateInstance() local
66 if (!obj_file) in CreateInstance()
69 lldb_private::UUID uuid = obj_file->GetUUID(); in CreateInstance()
74 if (obj_file->GetSectionList()->FindSectionByType( in CreateInstance()
82 fspec = obj_file->GetDebugLink().getValueOr(FileSpec()); in CreateInstance()
90 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
/external/llvm-project/llvm/cmake/modules/
DTensorFlowCompile.cmake16 set(obj_file ${prefix}.o) variable
18 add_custom_command(OUTPUT ${obj_file} ${hdr_file}
30 set(GENERATED_OBJS ${GENERATED_OBJS} ${obj_file} PARENT_SCOPE)
31 set_source_files_properties(${obj_file} PROPERTIES
/external/llvm-project/lldb/source/Core/
DModule.cpp351 ObjectFile *obj_file = GetObjectFile(); in GetUUID() local
353 if (obj_file != nullptr) { in GetUUID()
354 m_uuid = obj_file->GetUUID(); in GetUUID()
512 if (ObjectFile *obj_file = sc.module_sp->GetObjectFile()) in ResolveSymbolContextForAddress() local
514 obj_file->ResolveSymbolForAddress(so_addr, verify_unique); in ResolveSymbolContextForAddress()
1041 ObjectFile *obj_file = GetObjectFile(); in GetSymbolFile() local
1042 if (obj_file != nullptr) { in GetSymbolFile()
1286 ObjectFile *obj_file = GetObjectFile(); in GetSectionList() local
1287 if (obj_file != nullptr) in GetSectionList()
1288 obj_file->CreateSections(*GetUnifiedSectionList()); in GetSectionList()
[all …]
DDynamicLoader.cpp142 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
143 if (obj_file != nullptr) { in GetSectionListFromModule()
144 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
DSection.cpp154 Section::Section(const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument
161 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
176 const ModuleSP &module_sp, ObjectFile *obj_file, in Section() argument
183 m_obj_file(obj_file), m_type(sect_type), m_parent_wp(), m_name(name), in Section()
/external/google-breakpad/src/common/solaris/
Ddump_symbols.cc482 bool WriteModuleInfo(int fd, GElf_Half arch, const std::string &obj_file) { in WriteModuleInfo() argument
496 google_breakpad::FileID file_id(obj_file.c_str()); in WriteModuleInfo()
501 std::string filename = obj_file; in WriteModuleInfo()
502 size_t slash_pos = obj_file.find_last_of("/"); in WriteModuleInfo()
504 filename = obj_file.substr(slash_pos + 1); in WriteModuleInfo()
639 bool DumpSymbols::WriteSymbolFile(const std::string &obj_file, int sym_fd) { in WriteSymbolFile() argument
645 int obj_fd = open(obj_file.c_str(), O_RDONLY); in WriteSymbolFile()
674 if (WriteModuleInfo(sym_fd, elf_header.e_machine, obj_file) && in WriteSymbolFile()
Ddump_symbols.h43 bool WriteSymbolFile(const std::string &obj_file,
/external/llvm-project/lldb/source/Plugins/SymbolVendor/MacOSX/
DSymbolVendorMacOSX.cpp101 ObjectFile *obj_file = in CreateInstance() local
103 if (!obj_file) in CreateInstance()
131 FileSpec file_spec = obj_file->GetFileSpec(); in CreateInstance()
309 symbol_vendor->AddSymbolFileRepresentation(obj_file->shared_from_this()); in CreateInstance()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcompiler_functor.cc149 llvm::Expected<std::unique_ptr<llvm::object::ObjectFile>> obj_file = in operator ()() local
151 if (obj_file) { in operator ()()
152 post_codegen_hook_(*obj_file.get()); in operator ()()
Dcpu_compiler.cc624 static std::function<void(const llvm::object::ObjectFile& obj_file)> Create( in Create()
629 return [wrapped](const llvm::object::ObjectFile& obj_file) { in Create() argument
630 (*wrapped)(obj_file); in Create()
640 void operator()(const llvm::object::ObjectFile& obj_file) { in operator ()()
645 absl::string_view(obj_file.getData().data(), in operator ()()
646 obj_file.getData().size())); in operator ()()
993 auto post_codegen_hook = [&](const llvm::object::ObjectFile& obj_file) { in CompileAheadOfTime() argument
998 absl::string_view(obj_file.getData().data(), in CompileAheadOfTime()
999 obj_file.getData().size())); in CompileAheadOfTime()
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dprobe_user.c8 const char *obj_file = "./test_probe_user.o"; in test_probe_user() local
18 obj = bpf_object__open_file(obj_file, &opts); in test_probe_user()
Dfexit_bpf2bpf.c5 static void test_fexit_bpf2bpf_common(const char *obj_file, in test_fexit_bpf2bpf_common() argument
34 obj = bpf_object__open_file(obj_file, &opts); in test_fexit_bpf2bpf_common()
/external/icu/icu4c/source/test/depstest/
Ddepstest.py136 obj_file = _obj_files[file_name]
137 imports |= obj_file["imports"]
138 exports |= obj_file["exports"]
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils.py135 obj_file = inspect.getfile(obj)
142 if hasattr(m, '__file__') and m.__file__ == obj_file:
144 linecache.updatecache(obj_file, m.__dict__)
/external/clang/tools/scan-build-py/tests/functional/cases/
Dtest_from_cmd.py85 obj_file = os.path.join(target_dir, 'test.o')
87 command = ' '.join([compiler, '-c', src_file, '-o', obj_file])
/external/llvm-project/clang/tools/scan-build-py/tests/functional/cases/
Dtest_from_cmd.py84 obj_file = os.path.join(target_dir, 'test.o')
86 command = ' '.join([compiler, '-c', src_file, '-o', obj_file])
/external/libchrome/build/
Dcheck_gn_headers.py59 obj_file = ''
76 all_headers[f].append(obj_file)
79 obj_file = line.split(':')[0]
/external/llvm-project/lldb/include/lldb/Core/
DSection.h102 Section(const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
113 const lldb::ModuleSP &module_sp, ObjectFile *obj_file,
/external/toolchain-utils/binary_search_tool/
Dbisect_driver.py108 def which_cache(obj_file): argument
116 if in_object_list(obj_file, bad_set_file):
/external/llvm-project/lldb/include/lldb/Expression/
DIRExecutionUnit.h94 void PopulateSymtab(lldb_private::ObjectFile *obj_file,
97 void PopulateSectionList(lldb_private::ObjectFile *obj_file,
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DDynamicLoaderHexagonDYLD.cpp547 ObjectFile *obj_file = module->GetObjectFile(); in GetSectionListFromModule() local
548 if (obj_file) { in GetSectionListFromModule()
549 sections = obj_file->GetSectionList(); in GetSectionListFromModule()
/external/llvm-project/lldb/include/lldb/Symbol/
DObjectFile.h36 virtual void PopulateSymtab(lldb_private::ObjectFile *obj_file,
39 virtual void PopulateSectionList(lldb_private::ObjectFile *obj_file,

12