Home
last modified time | relevance | path

Searched refs:LoadCore (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump/
DTestMiniDump.py24 self.process = self.target.LoadCore("fizzbuzz_no_heap.dmp")
34 self.process = self.target.LoadCore("fizzbuzz_no_heap.dmp")
48 self.process = self.target.LoadCore("fizzbuzz_no_heap.dmp")
86 self.process = self.target.LoadCore("fizzbuzz_no_heap.dmp")
98 self.process = self.target.LoadCore("fizzbuzz_no_heap.dmp")
130 process = target.LoadCore(core)
166 process = target.LoadCore(core)
/external/llvm-project/lldb/test/API/functionalities/postmortem/wow64_minidump/
DTestWow64MiniDump.py28 process = target.LoadCore("fizzbuzz_wow64.dmp")
37 process = target.LoadCore("fizzbuzz_wow64.dmp")
53 process = target.LoadCore("fizzbuzz_wow64.dmp")
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/
DTestLinuxCore.py134 altprocess = alttarget.LoadCore("altmain.core")
164 process = target.LoadCore("linux-fpr_sse_x86_64.core")
201 process = target.LoadCore("linux-fpr_sse_i386.core")
229 process = target.LoadCore("linux-i386.core")
268 process = target.LoadCore(core_file)
284 process = target.LoadCore("linux-aarch64-neon.core")
340 process = target.LoadCore("linux-aarch64-sve-fpsimd.core")
427 process = target.LoadCore("linux-aarch64-sve-full.core")
469 process = target.LoadCore("linux-arm.core")
621 process = target.LoadCore(filename + ".core")
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/
DTestMiniDumpNew.py29 self.process = self.target.LoadCore(minidump_path)
67 self.process = self.target.LoadCore(minidump_path, error)
75 self.process = self.target.LoadCore("non-existent.dmp", error)
132 self.process = self.target.LoadCore("linux-x86_64.dmp")
154 self.process = self.target.LoadCore("linux-x86_64_not_crashed.dmp")
325 process = target.LoadCore(core)
393 self.process = self.target.LoadCore("linux-x86_64_not_crashed.dmp")
DTestMiniDumpUUID.py39 self.process = self.target.LoadCore(minidump_path)
/external/llvm-project/lldb/test/API/macosx/lc-note/firmware-corefile/
DTestFirmwareCorefiles.py114 self.process = self.target.LoadCore(self.aout_corefile)
126 self.process = self.target.LoadCore(self.bout_corefile)
/external/llvm-project/lldb/test/API/functionalities/postmortem/mach-core/
DTestMachCore.py41 process = target.LoadCore(self.getBuildArtifact("test.core"))
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/gcore/
DTestGCore.py35 process = target.LoadCore(filename + ".core")
/external/llvm-project/lldb/test/API/functionalities/unwind/noreturn/module-end/
DTestNoReturnModuleEnd.py20 process = target.LoadCore("test.core")
/external/llvm-project/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/
DTestLinuxCoreThreads.py39 process = target.LoadCore(filename + ".core")
/external/llvm-project/lldb/test/API/functionalities/process_save_core/
DTestProcessSaveCore.py51 process = target.LoadCore(core)
/external/llvm-project/lldb/test/API/macosx/lc-note/kern-ver-str/
DTestKernVerStrLCNOTE.py92 self.process = self.target.LoadCore(self.corefile)
/external/llvm-project/lldb/bindings/interface/
DSBTarget.i265 loads a new core file and returns the process object.") LoadCore;
267 LoadCore(const char *core_file);
270 LoadCore(const char *core_file, lldb::SBError &error);
/external/llvm-project/lldb/include/lldb/API/
DSBTarget.h180 SBProcess LoadCore(const char *core_file);
181 SBProcess LoadCore(const char *core_file, lldb::SBError &error);
/external/llvm-project/lldb/test/API/functionalities/postmortem/netbsd-core/
DTestNetBSDCore.py133 process = target.LoadCore(filename + ".core")
/external/llvm-project/lldb/source/API/
DSBTarget.cpp252 SBProcess SBTarget::LoadCore(const char *core_file) { in LoadCore() function in SBTarget
253 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *), in LoadCore()
257 return LLDB_RECORD_RESULT(LoadCore(core_file, error)); in LoadCore()
260 SBProcess SBTarget::LoadCore(const char *core_file, lldb::SBError &error) { in LoadCore() function in SBTarget
261 LLDB_RECORD_METHOD(lldb::SBProcess, SBTarget, LoadCore, in LoadCore()
272 error.SetError(process_sp->LoadCore()); in LoadCore()
2440 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore, (const char *)); in RegisterMethods()
2441 LLDB_REGISTER_METHOD(lldb::SBProcess, SBTarget, LoadCore, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h634 virtual Status LoadCore();
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp609 g_vsc.target.LoadCore(core_file.data(), error); in request_attach()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp410 error = process_sp->LoadCore(); in DoExecute()
/external/llvm-project/lldb/source/Target/
DProcess.cpp2708 Status Process::LoadCore() { in LoadCore() function in Process