Home
last modified time | relevance | path

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

/freebsd-12.1/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-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcessLaunchInfo.cpp142 const FileSpec &ProcessLaunchInfo::GetShell() const { return m_shell; } in GetShell()
145 m_shell = shell; in SetShell()
146 if (m_shell) { in SetShell()
147 FileSystem::Instance().ResolveExecutableLocation(m_shell); in SetShell()
171 m_shell.Clear(); in Clear()
248 if (m_shell) { in ConvertArgumentsForLaunchingInShell()
249 std::string shell_executable = m_shell.GetPath(); in ConvertArgumentsForLaunchingInShell()
333 Args::GetShellSafeArgument(m_shell, argv[i], safe_arg); in ConvertArgumentsForLaunchingInShell()
338 m_executable = m_shell; in ConvertArgumentsForLaunchingInShell()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcessLaunchInfo.h156 FileSpec m_shell; variable