Home
last modified time | relevance | path

Searched refs:GetShell (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBLaunchInfo.cpp252 const char *SBLaunchInfo::GetShell() { in GetShell() function in SBLaunchInfo
253 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBLaunchInfo, GetShell); in GetShell()
257 ConstString shell(m_opaque_sp->GetShell().GetPath().c_str()); in GetShell()
387 LLDB_REGISTER_METHOD(const char *, SBLaunchInfo, GetShell, ()); in RegisterMethods()
DSBPlatform.cpp221 const char *SBPlatformShellCommand::GetShell() { in GetShell() function in SBPlatformShellCommand
222 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformShellCommand, GetShell); in GetShell()
736 LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetShell, ()); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBLaunchInfo.i95 GetShell ();
DSBPlatform.i59 GetShell();
/external/llvm-project/lldb/include/lldb/API/
DSBLaunchInfo.h146 const char *GetShell();
DSBPlatform.h65 const char *GetShell();
/external/llvm-project/lldb/include/lldb/Host/
DProcessLaunchInfo.h75 const FileSpec &GetShell() const;
/external/llvm-project/lldb/test/API/commands/platform/basic/
DTestPlatformPython.py91 self.assertIn('/bin/zsh', sh_cmd.GetShell())
/external/llvm-project/lldb/source/Plugins/Platform/NetBSD/
DPlatformNetBSD.cpp199 const FileSpec &shell = launch_info.GetShell(); in GetResumeCountForLaunchInfo()
/external/llvm-project/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.cpp230 const FileSpec &shell = launch_info.GetShell(); in GetResumeCountForLaunchInfo()
/external/llvm-project/lldb/source/Host/common/
DProcessLaunchInfo.cpp139 const FileSpec &ProcessLaunchInfo::GetShell() const { return m_shell; } in GetShell() function in ProcessLaunchInfo
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp1202 const FileSpec &shell = launch_info.GetShell(); in GetResumeCountForLaunchInfo()
/external/llvm-project/lldb/source/Target/
DPlatform.cpp1027 const FileSpec &shell = launch_info.GetShell(); in LaunchProcess()
DTarget.cpp3030 bool with_shell = !!launch_info.GetShell(); in Launch()