Home
last modified time | relevance | path

Searched refs:command_output (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DHost.h188 int *signo_ptr, std::string *command_output,
204 int *signo_ptr, std::string *command_output,
218 std::string *command_output,
234 int *signo_ptr, std::string *command_output,
/openbsd-src/gnu/llvm/lldb/scripts/
H A Dverify_api.py14 (command_exit_status, command_output) = subprocess.getstatusoutput(command)
16 if command_output:
17 return command_output[0:-1].split("'\n")
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test_event/
H A Dbuild_exception.py14 def format_build_error(command, command_output): argument
16 command, command_output)
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp173 int *signo_ptr, std::string *command_output, in RunShellCommand() argument
176 signo_ptr, command_output, timeout); in RunShellCommand()
181 int *status_ptr, int *signo_ptr, std::string *command_output, in RunShellCommand() argument
186 command_output, timeout); in RunShellCommand()
188 signo_ptr, command_output, timeout); in RunShellCommand()
H A DPlatform.cpp1288 *command_output, // Pass nullptr if you don't want the command output in RunShellCommand() argument
1291 signo_ptr, command_output, timeout); in RunShellCommand()
1304 *command_output, // Pass nullptr if you don't want the command output in RunShellCommand() argument
1308 signo_ptr, command_output, timeout); in RunShellCommand()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp610 std::string command_output; in DownloadObjectAndSymbolFile() local
616 &command_output, // Command output in DownloadObjectAndSymbolFile()
621 if (error.Fail() || exit_status != 0 || command_output.empty()) { in DownloadObjectAndSymbolFile()
624 command_output.c_str()); in DownloadObjectAndSymbolFile()
629 CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)command_output.data(), in DownloadObjectAndSymbolFile()
630 command_output.size(), kCFAllocatorNull)); in DownloadObjectAndSymbolFile()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h74 std::string *command_output,
79 int *signo_ptr, std::string *command_output,
H A DPlatform.h595 *command_output, // Pass nullptr if you don't want the command output
606 *command_output, // Pass nullptr if you don't want the command output
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp626 std::string command_output; in GetXcodeSelectPath() local
630 &exit_status, &signo, &command_output, in GetXcodeSelectPath()
633 if (status.Success() && exit_status == 0 && !command_output.empty()) { in GetXcodeSelectPath()
634 size_t first_non_newline = command_output.find_last_not_of("\r\n"); in GetXcodeSelectPath()
636 command_output.erase(first_non_newline + 1); in GetXcodeSelectPath()
638 g_xcode_select_filespec = FileSpec(command_output); in GetXcodeSelectPath()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h144 *command_output, // Pass NULL if you don't want the command output
H A DPlatformRemoteGDBServer.cpp671 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() argument
676 signo_ptr, command_output, timeout); in RunShellCommand()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h393 *command_output, // Pass nullptr if you don't want the command output
H A DGDBRemoteCommunicationClient.cpp2940 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() argument
2978 if (command_output) in RunShellCommand()
2979 command_output->assign(output); in RunShellCommand()