Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dprocess_events.py398 process_stderr = process.GetSTDERR(1024)
402 process_stderr = process.GetSTDERR(1024)
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBProcess.i90 Python string.") GetSTDERR;
92 GetSTDERR (char *dst, size_t dst_len) const;
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBContext.h100 std::string &GetSTDERR() { return m_stderr; } in GetSTDERR() function
H A Ddebugserver.cpp1218 ctx.GetSTDERR().assign(optarg); in main()
1230 ctx.GetSTDERR().assign(optarg); in main()
H A DRNBRemote.cpp2314 packet.GetHexByteString(m_ctx.GetSTDERR()); in HandlePacket_QSetSTDIO()
2315 success = !m_ctx.GetSTDERR().empty(); in HandlePacket_QSetSTDIO()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.h42 size_t GetSTDERR(char *buf, size_t buf_size, Status &error) override;
H A DProcessWindows.cpp130 size_t ProcessWindows::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR() function in lldb_private::ProcessWindows
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBProcess.h64 size_t GetSTDERR(char *dst, size_t dst_len) const;
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBProcess.cpp273 size_t SBProcess::GetSTDERR(char *dst, size_t dst_len) const { in GetSTDERR() function in SBProcess
280 bytes_read = process_sp->GetSTDERR(dst, dst_len, error); in GetSTDERR()
H A DSBDebugger.cpp646 while ((len = process.GetSTDERR(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py869 stderr = process.GetSTDERR(999)
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h1985 virtual size_t GetSTDERR(char *buf, size_t buf_size, Status &error);
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp1582 flush(*GetAsyncErrorStream(), &Process::GetSTDERR); in FlushProcessOutput()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp381 while ((count = process.GetSTDERR(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DProcess.cpp4320 size_t Process::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR() function in Process