Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A 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()
H A DSBProcessInfo.cpp71 SBFileSpec SBProcessInfo::GetExecutableFile() { in GetExecutableFile() function in SBProcessInfo
73 GetExecutableFile); in GetExecutableFile()
77 file_spec.SetFileSpec(m_opaque_up->GetExecutableFile()); in GetExecutableFile()
210 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBProcessInfo, GetExecutableFile, in RegisterMethods()
H A DSBLaunchInfo.cpp117 SBFileSpec SBLaunchInfo::GetExecutableFile() { in GetExecutableFile() function in SBLaunchInfo
118 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBLaunchInfo, GetExecutableFile); in GetExecutableFile()
120 return LLDB_RECORD_RESULT(SBFileSpec(m_opaque_sp->GetExecutableFile())); in GetExecutableFile()
413 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBLaunchInfo, GetExecutableFile, ()); in RegisterMethods()
H A DSBTarget.cpp439 if (!launch_info.GetExecutableFile()) { in Launch()
540 attach_info.GetExecutableFile().SetFile(name, FileSpec::Style::native); in AttachToProcessWithName()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/netbsd/
H A 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()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h42 FileSpec &GetExecutableFile() { return m_executable; } in GetExecutableFile() function
47 const FileSpec &GetExecutableFile() const { return m_executable; } in GetExecutableFile() function
171 m_match_info.GetExecutableFile().SetFile(process_name,
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/freebsd/
H A 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()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1004 m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec(); in DoExecute()
1006 m_options.launch_info.GetExecutableFile().GetPath(exe_path); in DoExecute()
1013 if (m_options.launch_info.GetExecutableFile()) { in DoExecute()
1025 if (m_options.launch_info.GetExecutableFile()) { in DoExecute()
1252 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1258 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1264 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1270 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1276 match_info.GetProcessInfo().GetExecutableFile().SetFile( in SetOptionValue()
1443 attach_info.GetExecutableFile().SetFile(option_arg, in SetOptionValue()
H A DCommandObjectProcess.cpp315 attach_info.GetExecutableFile().SetFile(option_arg, in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp74 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native); in GetOpenBSDProcessArgs()
78 process_info.GetExecutableFile().GetFilename().GetCString(), in GetOpenBSDProcessArgs()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBProcessInfo.i34 GetExecutableFile ();
H A DSBLaunchInfo.i41 GetExecutableFile ();
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBProcessInfo.h31 SBFileSpec GetExecutableFile();
H A DSBLaunchInfo.h47 SBFileSpec GetExecutableFile();
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp32 FileSpec exe_spec(resolved_info.GetExecutableFile()); in LaunchProcess()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp182 launch_info.GetExecutableFile().GetPath(exe_path, sizeof(exe_path)); in LaunchProcess()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp758 process_info.GetExecutableFile().GetPath().c_str()); in ResolveExecutableModule()
760 ModuleSpec module_spec(process_info.GetExecutableFile(), in ResolveExecutableModule()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp344 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo()
1003 m_process_launch_info.GetExecutableFile().SetFile( in Handle_A()
1153 response.PutStringAsRawHex8(proc_info.GetExecutableFile().GetCString()); in CreateProcessInfoResponse()
H A DGDBRemoteCommunication.cpp916 FileSpec &debugserver_file_spec = launch_info.GetExecutableFile(); in StartDebugserverProcess()
H A DGDBRemoteCommunicationClient.cpp786 FileSpec exe_file = launch_info.GetExecutableFile(); in SendArgumentsPacket()
2008 process_info.GetExecutableFile().SetFile(name, FileSpec::Style::native); in DecodeProcessInfoResponse()
H A DGDBRemoteCommunicationServerLLGS.cpp372 match_info.GetProcessInfo().GetExecutableFile().SetFile( in AttachWaitProcess()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h171 if (GetExecutableFile()) in ProcessInfoSpecified()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2915 launch_info.GetExecutableFile().GetPath().c_str()); in Launch()
3139 attach_info.GetExecutableFile().GetFilename() = in Attach()
H A DProcess.cpp2744 if (attach_info.GetExecutableFile().GetPath(process_name, in Attach()
2791 match_info.GetProcessInfo().GetExecutableFile().GetPath( in Attach()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2591 attach_info.GetExecutableFile().SetFile(m_name_field->GetText(), in GetAttachInfo()

12