/llvm-project/lldb/include/lldb/Host/ |
H A D | Host.h | 203 /// \arg command_output Pass NULL if you don't want the command output 207 int *signo_ptr, std::string *command_output, 219 /// \arg command_output Pass NULL if you don't want the command output 223 int *signo_ptr, std::string *command_output, 233 /// \arg command_output Pass NULL if you don't want the command output 237 std::string *command_output, 249 /// \arg command_output Pass NULL if you don't want the command output 253 int *signo_ptr, std::string *command_output,
|
/llvm-project/lldb/scripts/ |
H A D | verify_api.py | 17 (command_exit_status, command_output) = subprocess.getstatusoutput(command) 19 if command_output: 20 return command_output[0:-1].split("'\n")
|
/llvm-project/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
|
/llvm-project/lldb/source/Target/ |
H A D | RemoteAwarePlatform.cpp | 60 int *signo_ptr, std::string *command_output, in RunShellCommand() 63 signo_ptr, command_output, timeout); in RunShellCommand() 68 int *status_ptr, int *signo_ptr, std::string *command_output, in RunShellCommand() 73 command_output, timeout); in RunShellCommand() 75 signo_ptr, command_output, timeout); in MakeDirectory() 57 RunShellCommand(llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument 65 RunShellCommand(llvm::StringRef shell,llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument
|
H A D | Platform.cpp | 1253 *command_output, // Pass nullptr if you don't want the command output 1256 signo_ptr, command_output, timeout); in RunShellCommand() 1269 *command_output, // Pass nullptr if you don't want the command output in RunShellCommand() 1273 signo_ptr, command_output, timeout); in CalculateMD5() 1248 RunShellCommand(llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument 1264 RunShellCommand(llvm::StringRef shell,llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument
|
/llvm-project/lldb/include/lldb/Target/ |
H A D | RemoteAwarePlatform.h | 75 std::string *command_output, 80 int *signo_ptr, std::string *command_output,
|
H A D | Platform.h | 678 *command_output, // Pass nullptr if you don't want the command output 689 *command_output, // Pass nullptr if you don't want the command output
|
/llvm-project/lldb/unittests/Process/gdb-remote/ |
H A D | GDBRemoteClientBaseTest.cpp | 348 StreamString command_output; in TEST_F() local 359 [&command_output](llvm::StringRef output) { command_output << output; }); in TEST_F() 363 ASSERT_EQ("Hello, world", command_output.GetString().str()); in TEST_F()
|
/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
H A D | SymbolLocatorDebugSymbols.cpp | 1088 std::string command_output; in DownloadObjectAndSymbolFile() local 1094 &command_output, // Command output in DownloadObjectAndSymbolFile() 1099 if (error.Fail() || exit_status != 0 || command_output.empty()) { in DownloadObjectAndSymbolFile() 1102 command_output.c_str()); in DownloadObjectAndSymbolFile() 1107 CFDataCreateWithBytesNoCopy(NULL, (const UInt8 *)command_output.data(), in DownloadObjectAndSymbolFile() 1108 command_output.size(), kCFAllocatorNull)); in DownloadObjectAndSymbolFile()
|
/llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
H A D | PlatformDarwin.cpp | 628 std::string command_output; in GetXcodeSelectPath() 632 &exit_status, &signo, &command_output, in GetXcodeSelectPath() 635 if (status.Success() && exit_status == 0 && !command_output.empty()) { in GetXcodeSelectPath() 636 size_t first_non_newline = command_output.find_last_not_of("\r\n"); in GetXcodeSelectPath() 638 command_output.erase(first_non_newline + 1); in GetXcodeSelectPath() 640 g_xcode_select_filespec = FileSpec(command_output); in GetXcodeSelectPath() 622 std::string command_output; GetXcodeSelectPath() local
|
/llvm-project/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 | 677 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() 682 signo_ptr, command_output, timeout); in RunShellCommand() 679 RunShellCommand(llvm::StringRef shell,llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument
|
/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationClient.h | 392 *command_output, // Pass nullptr if you don't want the command output
|
H A D | GDBRemoteCommunicationClient.cpp | 2968 *command_output, // Pass NULL if you don't want the command output in RunShellCommand() 3006 if (command_output) in RunShellCommand() 3007 command_output->assign(output); in RunShellCommand() 2966 RunShellCommand(llvm::StringRef command,const FileSpec & working_dir,int * status_ptr,int * signo_ptr,std::string * command_output,const Timeout<std::micro> & timeout) RunShellCommand() argument
|