Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dprocess_events.py392 process_stdout = process.GetSTDOUT(1024)
396 process_stdout = process.GetSTDOUT(1024)
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBProcess.i83 Python string.") GetSTDOUT;
85 GetSTDOUT (char *dst, size_t dst_len) const;
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBContext.h99 std::string &GetSTDOUT() { return m_stdout; } in GetSTDOUT() function
H A Ddebugserver.cpp1217 ctx.GetSTDOUT().assign(optarg); in main()
1226 ctx.GetSTDOUT().assign(optarg); in main()
H A DRNBRemote.cpp2309 packet.GetHexByteString(m_ctx.GetSTDOUT()); in HandlePacket_QSetSTDIO()
2310 success = !m_ctx.GetSTDOUT().empty(); in HandlePacket_QSetSTDIO()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.h41 size_t GetSTDOUT(char *buf, size_t buf_size, Status &error) override;
H A DProcessWindows.cpp125 size_t ProcessWindows::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT() function in lldb_private::ProcessWindows
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBProcess.h62 size_t GetSTDOUT(char *dst, size_t dst_len) const;
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBProcess.cpp260 size_t SBProcess::GetSTDOUT(char *dst, size_t dst_len) const { in GetSTDOUT() function in SBProcess
267 bytes_read = process_sp->GetSTDOUT(dst, dst_len, error); in GetSTDOUT()
H A DSBDebugger.cpp638 while ((len = process.GetSTDOUT(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py866 stdout = process.GetSTDOUT(999)
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h1956 virtual size_t GetSTDOUT(char *buf, size_t buf_size, Status &error);
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp1580 flush(*GetAsyncOutputStream(), &Process::GetSTDOUT); in FlushProcessOutput()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp379 while ((count = process.GetSTDOUT(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DProcess.cpp4301 size_t Process::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT() function in Process