Home
last modified time | relevance | path

Searched refs:GetSTDOUT (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/test/API/python_api/process/io/
DTestProcessIO.py44 output = self.process.GetSTDOUT(1000)
57 output = self.process.GetSTDOUT(1000)
72 error = self.process.GetSTDOUT(1000)
86 output = self.process.GetSTDOUT(1000)
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_process.py12 obj.GetSTDOUT(6)
/external/llvm-project/lldb/test/API/python_api/target/
DTestTargetAPI.py174 output = process.GetSTDOUT(9999)
185 output = process.GetSTDOUT(9999)
194 output = process.GetSTDOUT(9999)
/external/llvm-project/lldb/test/API/lang/objc/objc-checker/
DTestObjCCheckers.py71 stdout = process.GetSTDOUT(100)
/external/llvm-project/lldb/bindings/interface/
DSBProcess.i85 Python string.") GetSTDOUT;
87 GetSTDOUT (char *dst, size_t dst_len) const;
/external/llvm-project/lldb/examples/python/
Dprocess_events.py394 process_stdout = process.GetSTDOUT(1024)
398 process_stdout = process.GetSTDOUT(1024)
/external/llvm-project/lldb/tools/debugserver/source/
DRNBContext.h104 std::string &GetSTDOUT() { return m_stdout; } in GetSTDOUT() function
Ddebugserver.cpp1208 ctx.GetSTDOUT().assign(optarg); in main()
1217 ctx.GetSTDOUT().assign(optarg); in main()
DRNBRemote.cpp2356 packet.GetHexByteString(m_ctx.GetSTDOUT()); in HandlePacket_QSetSTDIO()
2357 success = !m_ctx.GetSTDOUT().empty(); in HandlePacket_QSetSTDIO()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.h44 size_t GetSTDOUT(char *buf, size_t buf_size, Status &error) override;
DProcessWindows.cpp129 size_t ProcessWindows::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT() function in lldb_private::ProcessWindows
/external/llvm-project/lldb/test/API/python_api/value/change_values/
DTestChangeValueAPI.py151 stdout = process.GetSTDOUT(1000)
/external/llvm-project/lldb/include/lldb/API/
DSBProcess.h62 size_t GetSTDOUT(char *dst, size_t dst_len) const;
/external/llvm-project/lldb/source/API/
DSBProcess.cpp273 size_t SBProcess::GetSTDOUT(char *dst, size_t dst_len) const { in GetSTDOUT() function in SBProcess
274 LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT, in GetSTDOUT()
281 bytes_read = process_sp->GetSTDOUT(dst, dst_len, error); in GetSTDOUT()
1443 LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDOUT); in RegisterMethods()
DSBDebugger.cpp566 while ((len = process.GetSTDOUT(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h1946 virtual size_t GetSTDOUT(char *buf, size_t buf_size, Status &error);
/external/llvm-project/lldb/source/Core/
DDebugger.cpp1284 flush(*GetAsyncOutputStream(), &Process::GetSTDOUT); in FlushProcessOutput()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp345 while ((count = process.GetSTDOUT(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/external/llvm-project/lldb/source/Target/
DProcess.cpp4392 size_t Process::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT() function in Process