Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_process.py13 obj.GetSTDERR(6)
/external/llvm-project/lldb/examples/python/
Dprocess_events.py400 process_stderr = process.GetSTDERR(1024)
404 process_stderr = process.GetSTDERR(1024)
/external/llvm-project/lldb/bindings/interface/
DSBProcess.i92 Python string.") GetSTDERR;
94 GetSTDERR (char *dst, size_t dst_len) const;
/external/llvm-project/lldb/tools/debugserver/source/
DRNBContext.h105 std::string &GetSTDERR() { return m_stderr; } in GetSTDERR() function
Ddebugserver.cpp1209 ctx.GetSTDERR().assign(optarg); in main()
1221 ctx.GetSTDERR().assign(optarg); in main()
DRNBRemote.cpp2361 packet.GetHexByteString(m_ctx.GetSTDERR()); in HandlePacket_QSetSTDIO()
2362 success = !m_ctx.GetSTDERR().empty(); in HandlePacket_QSetSTDIO()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.h45 size_t GetSTDERR(char *buf, size_t buf_size, Status &error) override;
DProcessWindows.cpp134 size_t ProcessWindows::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR() function in lldb_private::ProcessWindows
/external/llvm-project/lldb/include/lldb/API/
DSBProcess.h64 size_t GetSTDERR(char *dst, size_t dst_len) const;
/external/llvm-project/lldb/source/API/
DSBProcess.cpp287 size_t SBProcess::GetSTDERR(char *dst, size_t dst_len) const { in GetSTDERR() function in SBProcess
288 LLDB_RECORD_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR, in GetSTDERR()
295 bytes_read = process_sp->GetSTDERR(dst, dst_len, error); in GetSTDERR()
1444 LLDB_REGISTER_CHAR_PTR_METHOD_CONST(size_t, SBProcess, GetSTDERR); in RegisterMethods()
DSBDebugger.cpp574 while ((len = process.GetSTDERR(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h1975 virtual size_t GetSTDERR(char *buf, size_t buf_size, Status &error);
/external/llvm-project/lldb/source/Core/
DDebugger.cpp1286 flush(*GetAsyncErrorStream(), &Process::GetSTDERR); in FlushProcessOutput()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp347 while ((count = process.GetSTDERR(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/external/llvm-project/lldb/source/Target/
DProcess.cpp4411 size_t Process::GetSTDERR(char *buf, size_t buf_size, Status &error) { in GetSTDERR() function in Process