Home
last modified time | relevance | path

Searched refs:GetExecutableFile (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/lldb/source/API/
DSBProcessInfo.cpp71 SBFileSpec SBProcessInfo::GetExecutableFile() { in GetExecutableFile() function in SBProcessInfo
73 GetExecutableFile); in GetExecutableFile()
77 file_spec.SetFileSpec(m_opaque_up->GetExecutableFile()); in GetExecutableFile()
195 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBProcessInfo, GetExecutableFile, in RegisterMethods()
DSBAttachInfo.cpp35 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SBAttachInfo()
45 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SBAttachInfo()
111 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native); in SetExecutable()
113 m_opaque_sp->GetExecutableFile().Clear(); in SetExecutable()
121 m_opaque_sp->GetExecutableFile() = exe_file.ref(); in SetExecutable()
123 m_opaque_sp->GetExecutableFile().Clear(); in SetExecutable()
DSBLaunchInfo.cpp113 SBFileSpec SBLaunchInfo::GetExecutableFile() { in GetExecutableFile() function in SBLaunchInfo
114 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBLaunchInfo, GetExecutableFile); in GetExecutableFile()
116 return LLDB_RECORD_RESULT(SBFileSpec(m_opaque_sp->GetExecutableFile())); in GetExecutableFile()
362 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBLaunchInfo, GetExecutableFile, ()); in RegisterMethods()
/external/llvm-project/lldb/source/Host/netbsd/
DHostNetBSD.cpp73 process_info.GetExecutableFile().SetFile(cstr, in GetNetBSDProcessArgs()
77 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetNetBSDProcessArgs()
108 process_info.GetExecutableFile(), 0x20, 0); in GetNetBSDProcessCPUType()
126 process_info.GetExecutableFile()); in GetNetBSDProcessCPUType()
/external/llvm-project/lldb/unittests/Utility/
DProcessInstanceInfoTest.cpp97 info_bar.GetExecutableFile().SetFile("/foo/bar", FileSpec::Style::posix); in TEST()
101 match.GetProcessInfo().GetExecutableFile().SetFile("bar", in TEST()
107 match.GetProcessInfo().GetExecutableFile() = FileSpec(); in TEST()
/external/llvm-project/lldb/include/lldb/Utility/
DProcessInfo.h42 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile() function
47 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile() function
175 m_match_info.GetExecutableFile().SetFile(process_name,
/external/llvm-project/lldb/source/Host/freebsd/
DHost.cpp76 process_info.GetExecutableFile().SetFile(pathname, FileSpec::Style::native); in GetFreeBSDProcessArgs()
78 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); in GetFreeBSDProcessArgs()
81 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetFreeBSDProcessArgs()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_process_info.py11 obj.GetExecutableFile()
/external/llvm-project/lldb/bindings/interface/
DSBProcessInfo.i34 GetExecutableFile ();
DSBLaunchInfo.i38 GetExecutableFile ();
/external/llvm-project/lldb/source/Host/openbsd/
DHost.cpp74 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); in GetOpenBSDProcessArgs()
78 process_info.GetExecutableFile().GetFilename().GetCString(), in GetOpenBSDProcessArgs()
/external/llvm-project/lldb/source/Commands/
DCommandObjectPlatform.cpp1034 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute()
1036 m_options.launch_info.GetExecutableFile().GetPath(exe_path); in DoExecute()
1043 if (m_options.launch_info.GetExecutableFile()) { in DoExecute()
1055 if (m_options.launch_info.GetExecutableFile()) { in DoExecute()
1288 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1294 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1300 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1306 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1312 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1483 attach_info.GetExecutableFile().SetFile(option_arg, in SetOptionValue()
/external/llvm-project/lldb/include/lldb/API/
DSBProcessInfo.h31 SBFileSpec GetExecutableFile();
DSBLaunchInfo.h47 SBFileSpec GetExecutableFile();
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessDebugger.cpp129 launch_info.GetExecutableFile().GetPath().c_str()); in LaunchProcess()
146 launch_info.GetExecutableFile().GetPath(), result); in LaunchProcess()
154 launch_info.GetExecutableFile().GetPath(), error); in LaunchProcess()
159 launch_info.GetExecutableFile().GetPath()); in LaunchProcess()
DDebuggerThread.cpp68 LLDB_LOG(log, "launching '{0}'", launch_info.GetExecutableFile().GetPath()); in DebugLaunch()
127 launch_info.GetExecutableFile().GetPath()); in DebuggerThreadLaunchRoutine()
/external/llvm-project/lldb/source/Host/common/
DMonitoringProcessLauncher.cpp32 FileSpec exe_spec(resolved_info.GetExecutableFile()); in LaunchProcess()
/external/llvm-project/lldb/source/Host/posix/
DProcessLauncherPosixFork.cpp182 launch_info.GetExecutableFile().GetPath(exe_path, sizeof(exe_path)); in LaunchProcess()
/external/llvm-project/lldb/source/Host/windows/
DProcessLauncherWindows.cpp105 executable = launch_info.GetExecutableFile().GetPath(); in LaunchProcess()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp731 process_info.GetExecutableFile().GetPath().c_str()); in ResolveExecutableModule()
733 ModuleSpec module_spec(process_info.GetExecutableFile(), in ResolveExecutableModule()
/external/llvm-project/lldb/source/Host/linux/
DHost.cpp184 process_info.GetExecutableFile().SetFile(PathRef, FileSpec::Style::native); in GetExePathAndArch()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerCommon.cpp350 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo()
1038 m_process_launch_info.GetExecutableFile().SetFile( in Handle_A()
1188 response.PutStringAsRawHex8(proc_info.GetExecutableFile().GetCString()); in CreateProcessInfoResponse()
/external/llvm-project/lldb/test/API/python_api/process/
DTestProcessAPI.py356 file_spec = process_info.GetExecutableFile()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessFreeBSD.cpp313 ModuleSpec exe_module_spec(process_info.GetExecutableFile(), in DoAttachToProcessWithID()
503 ModuleSpec exe_module_spec(process_info.GetExecutableFile(), in DoDidExec()
/external/llvm-project/lldb/source/Host/macosx/objcxx/
DHost.mm511 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native);
515 process_info.GetExecutableFile().GetFilename().GetCString(),
1234 FileSpec exe_spec(launch_info.GetExecutableFile());

12