Searched refs:safe_arg (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp379 std::string &safe_arg) {
401 safe_arg.assign(unsafe_arg);
403 while (prev_pos < safe_arg.size()) {
405 size_t pos = safe_arg.find_first_of(escapables, prev_pos);
407 safe_arg.insert(pos, 1, '\\');
412 return safe_arg.c_str();
377 GetShellSafeArgument(const FileSpec &shell, const char *unsafe_arg, std::string &safe_arg) argument
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h263 std::string &safe_arg);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp257 std::string safe_arg; local
335 Args::GetShellSafeArgument(m_shell, argv[i], safe_arg);

Completed in 66 milliseconds