Home
last modified time | relevance | path

Searched refs:out_stream (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp255 Stream *out_stream) { in CompareState() argument
261 out_stream->Printf("r%d: 0x%x != 0x%x\n", i, m_gpr[i], in CompareState()
269 out_stream->Printf("s%d: 0x%x != 0x%x\n", i, m_vfp_regs.s_regs[i], in CompareState()
277 out_stream->Printf("d%d: 0x%" PRIx64 " != 0x%" PRIx64 "\n", i + 16, in CompareState()
286 out_stream->Printf("memory does not match\n"); in CompareState()
287 out_stream->Printf("got memory:\n"); in CompareState()
289 out_stream->Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
290 out_stream->Printf("expected memory:\n"); in CompareState()
292 out_stream->Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
H A DEmulationStateARM.h40 lldb_private::Stream *out_stream);
H A DEmulateInstructionARM.h135 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
H A DEmulateInstructionARM.cpp14379 bool EmulateInstructionARM::TestEmulation(Stream *out_stream, ArchSpec &arch, in TestEmulation() argument
14382 out_stream->Printf("TestEmulation: Missing test data.\n"); in TestEmulation()
14395 out_stream->Printf("TestEmulation: Error reading opcode from test file.\n"); in TestEmulation()
14411 out_stream->Printf("TestEmulation: Invalid arch.\n"); in TestEmulation()
14421 out_stream->Printf("TestEmulation: Failed to find 'before' state.\n"); in TestEmulation()
14427 out_stream->Printf("TestEmulation: Failed loading 'before' state.\n"); in TestEmulation()
14434 out_stream->Printf("TestEmulation: Failed to find 'after' state.\n"); in TestEmulation()
14440 out_stream->Printf("TestEmulation: Failed loading 'after' state.\n"); in TestEmulation()
14452 out_stream->Printf("TestEmulation: EvaluateInstruction() failed.\n"); in TestEmulation()
14456 success = before_state.CompareState(after_state, out_stream); in TestEmulation()
[all …]
/llvm-project-15.0.7/lldb/source/Core/
H A DDisassembler.cpp704 out_stream->Printf( in ReadArray()
764 out_stream->Printf( in ReadDictionary()
815 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
823 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
858 if (!out_stream) in TestEmulation()
867 out_stream->Printf( in TestEmulation()
874 out_stream->Printf( in TestEmulation()
892 out_stream->Printf( in TestEmulation()
917 out_stream->Printf( in TestEmulation()
933 out_stream->Printf("Emulation test succeeded."); in TestEmulation()
[all …]
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_io.cpp134 void __kmp_vprintf(enum kmp_io out_stream, char const *format, va_list ap) { in __kmp_vprintf() argument
139 if (!__kmp_stderr && out_stream == kmp_err) { in __kmp_vprintf()
142 if (!__kmp_stdout && out_stream == kmp_out) { in __kmp_vprintf()
146 auto stream = ((out_stream == kmp_out) ? __kmp_stdout : __kmp_stderr); in __kmp_vprintf()
/llvm-project-15.0.7/third-party/benchmark/test/
H A Doutput_test_helper.cc400 std::stringstream out_stream; in RunOutputTests() member
407 reporter.SetOutputStream(&out_stream); in RunOutputTests()
430 std::cout << rep_test.out_stream.str(); in RunOutputTests()
433 internal::CheckCases(rep_test.output_cases, rep_test.out_stream); in RunOutputTests()
443 internal::GetResultsChecker().CheckResults(csv.out_stream); in RunOutputTests()
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_result.py348 out_stream = sys.stdout
357 self.assertEqual(out_stream.getvalue(), 'foo\n')
372 self.assertEqual(out_stream.getvalue(), '')
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h59 bool TestEmulation(Stream *out_stream, ArchSpec &arch, in TestEmulation() argument
/llvm-project-15.0.7/lldb/source/API/
H A DSBInstruction.cpp276 StreamFile out_stream(out_sp); in Print() local
279 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp856 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete() local
857 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
1777 Stream &out_stream = result.GetOutputStream(); in DoExecute() local
1779 out_stream << "Deleted command:"; in DoExecute()
1781 out_stream << ' '; in DoExecute()
1782 out_stream << command[idx].c_str(); in DoExecute()
1784 out_stream << '\n'; in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDisassembler.h179 lldb::OptionValueSP ReadArray(FILE *in_file, Stream *out_stream,
182 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream *out_stream);
H A DEmulateInstruction.h370 virtual bool TestEmulation(Stream *out_stream, ArchSpec &arch,
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h62 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/llvm-project-15.0.7/libcxx/include/experimental/
H A Diterator40 ostream_type* out_stream; // exposition only
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h69 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h77 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1302 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local
1304 main_file_buffer.write(out_stream); in RewriteExpression()
1305 out_stream.flush(); in RewriteExpression()