Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/process/io/
H A DTestProcessIO.py40 output = self.process.GetSTDOUT(1000)
52 output = self.process.GetSTDOUT(1000)
66 error = self.process.GetSTDOUT(1000)
79 output = self.process.GetSTDOUT(1000)
/llvm-project-15.0.7/lldb/test/API/lua_api/
H A DTestProcessAPI.lua15 local stdout = process:GetSTDOUT(1000)
/llvm-project-15.0.7/lldb/test/API/macosx/posix_spawn/
H A DTestLaunchProcessPosixSpawn.py39 self.assertIn('slice: {}'.format(arch), process.GetSTDOUT(1000))
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_process.py12 obj.GetSTDOUT(6)
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-checker/
H A DTestObjCCheckers.py69 stdout = process.GetSTDOUT(100)
/llvm-project-15.0.7/lldb/examples/python/
H A Dprocess_events.py394 process_stdout = process.GetSTDOUT(1024)
398 process_stdout = process.GetSTDOUT(1024)
/llvm-project-15.0.7/lldb/test/API/python_api/target/
H A DTestTargetAPI.py182 output = process.GetSTDOUT(9999)
193 output = process.GetSTDOUT(9999)
202 output = process.GetSTDOUT(9999)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBProcess.i83 Python string.") GetSTDOUT;
85 GetSTDOUT (char *dst, size_t dst_len) const;
/llvm-project-15.0.7/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.cpp2305 packet.GetHexByteString(m_ctx.GetSTDOUT()); in HandlePacket_QSetSTDIO()
2306 success = !m_ctx.GetSTDOUT().empty(); in HandlePacket_QSetSTDIO()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindows.h44 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
/llvm-project-15.0.7/lldb/test/API/python_api/value/change_values/
H A DTestChangeValueAPI.py145 stdout = process.GetSTDOUT(1000)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBProcess.h62 size_t GetSTDOUT(char *dst, size_t dst_len) const;
/llvm-project-15.0.7/lldb/test/API/qemu/
H A DTestQemuLaunch.py111 self.assertEqual(process.GetSTDOUT(1000),
/llvm-project-15.0.7/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.cpp600 while ((len = process.GetSTDOUT(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py954 stdout = process.GetSTDOUT(999)
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcess.h1934 virtual size_t GetSTDOUT(char *buf, size_t buf_size, Status &error);
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp1560 flush(*GetAsyncOutputStream(), &Process::GetSTDOUT); in FlushProcessOutput()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp376 while ((count = process.GetSTDOUT(buffer, sizeof(buffer))) > 0) in SendStdOutStdErr()
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp4280 size_t Process::GetSTDOUT(char *buf, size_t buf_size, Status &error) { in GetSTDOUT() function in Process