Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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,
/llvm-project-15.0.7/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")
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test_event/
H A Dbuild_exception.py14 def format_build_error(command, command_output): argument
16 command, command_output)
/llvm-project-15.0.7/lldb/source/Target/
H A DRemoteAwarePlatform.cpp172 int *signo_ptr, std::string *command_output, in RunShellCommand() argument
175 signo_ptr, command_output, timeout); in RunShellCommand()
180 int *status_ptr, int *signo_ptr, std::string *command_output, in RunShellCommand() argument
185 command_output, timeout); in RunShellCommand()
187 signo_ptr, command_output, timeout); in RunShellCommand()
H A DPlatform.cpp1287 *command_output, // Pass nullptr if you don't want the command output in RunShellCommand() argument
1290 signo_ptr, command_output, timeout); in RunShellCommand()
1303 *command_output, // Pass nullptr if you don't want the command output in RunShellCommand() argument
1307 signo_ptr, command_output, timeout); in RunShellCommand()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h73 std::string *command_output,
78 int *signo_ptr, std::string *command_output,
H A DPlatform.h594 *command_output, // Pass nullptr if you don't want the command output
605 *command_output, // Pass nullptr if you don't want the command output
/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteClientBaseTest.cpp347 StreamString command_output; in TEST_F() local
358 [&command_output](llvm::StringRef output) { command_output << output; }); in TEST_F()
362 ASSERT_EQ("Hello, world", command_output.GetString().str()); in TEST_F()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp606 std::string command_output; in DownloadObjectAndSymbolFile() local
620 &command_output, // Command output in DownloadObjectAndSymbolFile()
624 if (error.Success() && exit_status == 0 && !command_output.empty()) { in DownloadObjectAndSymbolFile()
626 NULL, (const UInt8 *)command_output.data(), command_output.size(), in DownloadObjectAndSymbolFile()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp625 std::string command_output; in GetXcodeSelectPath() local
629 &exit_status, &signo, &command_output, in GetXcodeSelectPath()
632 if (status.Success() && exit_status == 0 && !command_output.empty()) { in GetXcodeSelectPath()
633 size_t first_non_newline = command_output.find_last_not_of("\r\n"); in GetXcodeSelectPath()
635 command_output.erase(first_non_newline + 1); in GetXcodeSelectPath()
637 g_xcode_select_filespec = FileSpec(command_output); in GetXcodeSelectPath()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h143 *command_output, // Pass NULL if you don't want the command output
H A DPlatformRemoteGDBServer.cpp676 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() argument
681 signo_ptr, command_output, timeout); in RunShellCommand()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h398 *command_output, // Pass nullptr if you don't want the command output
H A DGDBRemoteCommunicationClient.cpp2934 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() argument
2972 if (command_output) in RunShellCommand()
2973 command_output->assign(output); in RunShellCommand()