Home
last modified time | relevance | path

Searched refs:loadables (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp628 std::vector<LoadableData> loadables; in GetLoadableData() local
631 return loadables; in GetLoadableData()
648 loadables.push_back(loadable); in GetLoadableData()
650 return loadables; in GetLoadableData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp3592 std::vector<LoadableData> loadables; in GetLoadableData() local
3606 loadables.push_back(loadable); in GetLoadableData()
3608 return loadables; in GetLoadableData()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp3102 std::vector<ObjectFile::LoadableData> loadables( in DoExecute() local
3104 if (loadables.size() == 0) { in DoExecute()
3108 Status error = process->WriteObjectFile(std::move(loadables)); in DoExecute()