Home
last modified time | relevance | path

Searched refs:objfile_up (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp130 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local
132 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
133 if (spec && objfile_up->SetModulesArchitecture(spec)) { in CreateInstance()
136 static_cast<void *>(objfile_up.get()), in CreateInstance()
137 static_cast<void *>(objfile_up->GetModule().get()), in CreateInstance()
138 objfile_up->GetModule()->GetSpecificationDescription().c_str(), in CreateInstance()
140 return objfile_up.release(); in CreateInstance()
154 std::unique_ptr<ObjectFileWasm> objfile_up( in CreateMemoryInstance() local
156 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
157 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
[all …]
/external/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
DObjectFilePDB.cpp98 auto objfile_up = std::make_unique<ObjectFilePDB>( in CreateInstance() local
100 if (!objfile_up->initPDBFile()) in CreateInstance()
102 return objfile_up.release(); in CreateInstance()
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp108 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateInstance() local
110 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()
114 if (!objfile_up->CreateBinary()) in CreateInstance()
116 return objfile_up.release(); in CreateInstance()
124 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateMemoryInstance() local
126 if (objfile_up.get() && objfile_up->ParseHeader()) { in CreateMemoryInstance()
127 return objfile_up.release(); in CreateMemoryInstance()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp364 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local
366 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
367 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()
368 return objfile_up.release(); in CreateInstance()
382 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local
384 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
385 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
386 return objfile_up.release(); in CreateMemoryInstance()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp800 auto objfile_up = std::make_unique<ObjectFileMachO>( in CreateInstance() local
802 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()
805 return objfile_up.release(); in CreateInstance()
812 std::unique_ptr<ObjectFile> objfile_up( in CreateMemoryInstance() local
814 if (objfile_up.get() && objfile_up->ParseHeader()) in CreateMemoryInstance()
815 return objfile_up.release(); in CreateMemoryInstance()