Searched refs:stdio_buffer (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.msvc/ |
| H A D | test.cpp | 630 char stdio_buffer[stdio_buffer_size]; in test_floating_prefix() local 658 const int stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.0f", input); in test_floating_prefix() 660 const string_view stdio_sv(stdio_buffer); in test_floating_prefix() 725 char stdio_buffer[stdio_buffer_size]; in test_floating_precision_prefix() local 741 int stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.*f", precision, input); in test_floating_precision_prefix() 743 string_view stdio_sv(stdio_buffer); in test_floating_precision_prefix() 752 stdio_ret = sprintf_s(stdio_buffer, size(stdio_buffer), "%.*e", precision, input); in test_floating_precision_prefix() 754 stdio_sv = stdio_buffer; in test_floating_precision_prefix()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBDebugger.cpp | 592 char stdio_buffer[1024]; in HandleProcessEvent() local 600 while ((len = process.GetSTDOUT(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent() 602 out_sp->Write(stdio_buffer, len); in HandleProcessEvent() 608 while ((len = process.GetSTDERR(stdio_buffer, sizeof(stdio_buffer))) > 0) in HandleProcessEvent() 610 err_sp->Write(stdio_buffer, len); in HandleProcessEvent()
|