Home
last modified time | relevance | path

Searched refs:m_shell (Results 1 – 4 of 4) sorted by relevance

/freebsd-src/contrib/atf/atf-sh/
H A Datf-sh.cpp111 atf::fs::path m_shell; member in atf_sh
128 m_shell(atf::fs::path(atf::env::get("ATF_SHELL", ATF_SHELL))) in atf_sh()
139 INV(m_shell == atf::fs::path(atf::env::get("ATF_SHELL", ATF_SHELL))); in specific_options()
141 "default: " + m_shell.str())); in specific_options()
151 m_shell = atf::fs::path(arg); in process_option()
170 const char** argv = construct_argv(m_shell.str(), m_argc, m_argv); in main()
174 const int ret = execv(m_shell.c_str(), const_cast< char** >(argv)); in main()
176 std::cerr << "Failed to execute " << m_shell.str() << ": " in main()
/freebsd-src/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp137 const FileSpec &ProcessLaunchInfo::GetShell() const { return m_shell; } in GetShell()
140 m_shell = shell; in SetShell()
141 if (m_shell) { in SetShell()
142 FileSystem::Instance().ResolveExecutableLocation(m_shell); in SetShell()
166 m_shell.Clear(); in Clear()
240 if (m_shell) { in ConvertArgumentsForLaunchingInShell()
241 std::string shell_executable = m_shell.GetPath(); in ConvertArgumentsForLaunchingInShell()
323 std::string safe_arg = Args::GetShellSafeArgument(m_shell, argv[i]); in ConvertArgumentsForLaunchingInShell()
332 m_executable = m_shell; in ConvertArgumentsForLaunchingInShell()
/freebsd-src/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp57 m_shell = shell_interpreter.str(); in PlatformShellCommand()
59 if (!m_shell.empty() && !shell_command.empty()) in PlatformShellCommand()
70 std::string m_shell; member
208 if (m_opaque_ptr->m_shell.empty()) in GetShell()
210 return ConstString(m_opaque_ptr->m_shell.c_str()).GetCString(); in GetShell()
217 m_opaque_ptr->m_shell = shell_interpreter; in SetShell()
219 m_opaque_ptr->m_shell.clear(); in SetShell()
561 shell_command.m_opaque_ptr->m_shell, command, in Run()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h136 FileSpec m_shell; variable