Home
last modified time | relevance | path

Searched refs:stdio_buffer (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBDebugger.cpp417 char stdio_buffer[1024]; in HandleProcessEvent() local
425 while ((len = process.GetSTDOUT(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
427 ::fwrite(stdio_buffer, 1, len, out); in HandleProcessEvent()
433 while ((len = process.GetSTDERR(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent()
435 ::fwrite(stdio_buffer, 1, len, err); in HandleProcessEvent()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp1359 char stdio_buffer[1024]; in GetProcessSTDOUT() local
1360 while ((len = process->GetSTDOUT(stdio_buffer, sizeof(stdio_buffer), in GetProcessSTDOUT()
1362 stream->Write(stdio_buffer, len); in GetProcessSTDOUT()
1387 char stdio_buffer[1024]; in GetProcessSTDERR() local
1388 while ((len = process->GetSTDERR(stdio_buffer, sizeof(stdio_buffer), in GetProcessSTDERR()
1390 stream->Write(stdio_buffer, len); in GetProcessSTDERR()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2680 char stdio_buffer[1024]; in GetProcessOutput() local
2688 while ((len = process_sp->GetSTDOUT(stdio_buffer, sizeof(stdio_buffer), in GetProcessOutput()
2691 m_debugger.GetOutputFile()->Write(stdio_buffer, bytes_written); in GetProcessOutput()
2694 while ((len = process_sp->GetSTDERR(stdio_buffer, sizeof(stdio_buffer), in GetProcessOutput()
2697 m_debugger.GetErrorFile()->Write(stdio_buffer, bytes_written); in GetProcessOutput()