Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process.py13 obj.GetSTDERR(6)
/llvm-project-15.0.7/lldb/examples/python/
H A Dprocess_events.py400 process_stderr = process.GetSTDERR(1024)
404 process_stderr = process.GetSTDERR(1024)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcess.i90 Python string.") GetSTDERR;
92 GetSTDERR (char *dst, size_t dst_len) const;
/llvm-project-15.0.7/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.cpp2310 packet.GetHexByteString(m_ctx.GetSTDERR()); in HandlePacket_QSetSTDIO()
2311 success = !m_ctx.GetSTDERR().empty(); in HandlePacket_QSetSTDIO()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.h45 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
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcess.h64 size_t GetSTDERR(char *dst, size_t dst_len) const;
/llvm-project-15.0.7/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.cpp608 while ((len = process.GetSTDERR(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py957 stderr = process.GetSTDERR(999)
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcess.h1963 virtual size_t GetSTDERR(char *buf, size_t buf_size, Status &error);
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp1562 flush(*GetAsyncErrorStream(), &Process::GetSTDERR); in FlushProcessOutput()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp378 while ((count = process.GetSTDERR(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp4299 size_t Process::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR() function in Process