Home
last modified time | relevance | path

Searched refs:LoadImage (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Host/windows/
H A Dwindows.h23 #undef LoadImage
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcess.h244 uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error);
270 uint32_t LoadImage(const lldb::SBFileSpec &local_image_spec,
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process.py47 obj.LoadImage(lldb.SBFileSpec(), error)
/llvm-project-15.0.7/lldb/source/API/
H A DSBProcess.cpp977 uint32_t SBProcess::LoadImage(lldb::SBFileSpec &sb_remote_image_spec, in LoadImage() function in SBProcess
981 return LoadImage(SBFileSpec(), sb_remote_image_spec, sb_error); in LoadImage()
984 uint32_t SBProcess::LoadImage(const lldb::SBFileSpec &sb_local_image_spec, in LoadImage() function in SBProcess
996 return platform_sp->LoadImage(process_sp.get(), *sb_local_image_spec, in LoadImage()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcess.i356 LoadImage (lldb::SBFileSpec &image_spec, lldb::SBError &error);
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectProcess.cpp1096 platform->LoadImage(process, FileSpec(), image_spec, error); in DoExecute()
1102 image_token = platform->LoadImage(process, image_spec, in DoExecute()
1108 platform->LoadImage(process, image_spec, FileSpec(), error); in DoExecute()
/llvm-project-15.0.7/lldb/test/API/functionalities/completion/
H A DTestCompletion.py102 self.process().LoadImage(lldb.SBFileSpec(self.getBuildArtifact("libshared.so")), err)
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DPlatform.h762 uint32_t LoadImage(lldb_private::Process *process,
/llvm-project-15.0.7/lldb/source/Target/
H A DPlatform.cpp1685 uint32_t Platform::LoadImage(lldb_private::Process *process, in LoadImage() function in Platform