/openbsd-src/gnu/llvm/lldb/include/lldb/Host/ |
H A D | Host.h | 188 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 D | verify_api.py | 14 (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 D | build_exception.py | 14 def format_build_error(command, command_output): argument 16 command, command_output)
|
/openbsd-src/gnu/llvm/lldb/source/Target/ |
H A D | RemoteAwarePlatform.cpp | 173 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 D | Platform.cpp | 1288 *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 D | LocateSymbolFileMacOSX.cpp | 610 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 D | RemoteAwarePlatform.h | 74 std::string *command_output, 79 int *signo_ptr, std::string *command_output,
|
H A D | Platform.h | 595 *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 D | PlatformDarwin.cpp | 626 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 D | PlatformRemoteGDBServer.h | 144 *command_output, // Pass NULL if you don't want the command output
|
H A D | PlatformRemoteGDBServer.cpp | 671 *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 D | GDBRemoteCommunicationClient.h | 393 *command_output, // Pass nullptr if you don't want the command output
|
H A D | GDBRemoteCommunicationClient.cpp | 2940 *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()
|