Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp218 Stream &out_stream) { in CompareState() argument
224 out_stream.Printf("r%d: 0x%x != 0x%x\n", i, m_gpr[i], in CompareState()
232 out_stream.Printf("s%d: 0x%x != 0x%x\n", i, m_vfp_regs.s_regs[i], in CompareState()
240 out_stream.Printf("d%d: 0x%" PRIx64 " != 0x%" PRIx64 "\n", i + 16, in CompareState()
248 out_stream.Printf("memory does not match\n"); in CompareState()
249 out_stream.Printf("got memory:\n"); in CompareState()
251 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
252 out_stream.Printf("expected memory:\n"); in CompareState()
254 out_stream.Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
H A DEmulationStateARM.h38 lldb_private::Stream &out_stream);
H A DEmulateInstructionARM.h135 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionARM.cpp14349 bool EmulateInstructionARM::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
14352 out_stream.Printf("TestEmulation: Missing test data.\n"); in TestEmulation()
14365 out_stream.Printf("TestEmulation: Error reading opcode from test file.\n"); in TestEmulation()
14381 out_stream.Printf("TestEmulation: Invalid arch.\n"); in TestEmulation()
14391 out_stream.Printf("TestEmulation: Failed to find 'before' state.\n"); in TestEmulation()
14397 out_stream.Printf("TestEmulation: Failed loading 'before' state.\n"); in TestEmulation()
14404 out_stream.Printf("TestEmulation: Failed to find 'after' state.\n"); in TestEmulation()
14410 out_stream.Printf("TestEmulation: Failed loading 'after' state.\n"); in TestEmulation()
14422 out_stream.Printf("TestEmulation: EvaluateInstruction() failed.\n"); in TestEmulation()
14426 success = before_state.CompareState(after_state, out_stream); in TestEmulation()
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_io.cpp115 void __kmp_vprintf(enum kmp_io out_stream, char const *format, va_list ap) { in __kmp_vprintf() argument
120 if (!__kmp_stderr && out_stream == kmp_err) { in __kmp_vprintf()
123 if (!__kmp_stdout && out_stream == kmp_out) { in __kmp_vprintf()
127 auto stream = ((out_stream == kmp_out) ? __kmp_stdout : __kmp_stderr); in __kmp_vprintf()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp702 OptionValueSP Instruction::ReadArray(FILE *in_file, Stream &out_stream, in ReadArray() argument
712 out_stream.Printf( in ReadArray()
772 out_stream.Printf( in ReadDictionary()
822 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
830 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
870 out_stream.Printf( in TestEmulation()
877 out_stream.Printf( in TestEmulation()
895 out_stream.Printf( in TestEmulation()
920 out_stream.Printf( in TestEmulation()
937 out_stream.Printf("Emulation test succeeded."); in TestEmulation()
[all …]
H A DFormatEntity.cpp1082 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs()
1084 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs()
1085 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
1091 out_stream.PutCString(close_paren); in PrettyPrintFunctionNameWithArgs()
1093 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs()
1103 out_stream.PutCString(" [inlined] "); in FormatInlinedBlock()
1104 inline_info->GetName().Dump(&out_stream); in FormatInlinedBlock()
2410 Stream &out_stream, VariableList const &args, in PrettyPrintFunctionArguments() argument
2448 out_stream.PutCString(", "); in PrettyPrintFunctionArguments()
2453 out_stream.Printf("%s=%s at %s", var_name, in PrettyPrintFunctionArguments()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp180 static bool PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument
191 out_stream.PutCString(return_type); in PrettyPrintFunctionNameWithArgs()
192 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
195 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs()
196 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
198 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs()
200 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs()
204 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
205 out_stream.PutCString(qualifiers); in PrettyPrintFunctionNameWithArgs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h60 bool TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBInstruction.cpp295 StreamFile out_stream(out_sp); in Print() local
298 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h64 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionRISCV.cpp1751 bool EmulateInstructionRISCV::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.h55 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionLoongArch.cpp190 Stream &out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp853 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete() local
854 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
1800 Stream &out_stream = result.GetOutputStream(); in DoExecute() local
1802 out_stream << "Deleted command:"; in DoExecute()
1804 out_stream << ' '; in DoExecute()
1805 out_stream << command[idx].c_str(); in DoExecute()
1807 out_stream << '\n'; in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h181 lldb::OptionValueSP ReadArray(FILE *in_file, Stream &out_stream,
184 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream &out_stream);
H A DFormatEntity.h246 void PrettyPrintFunctionArguments(Stream &out_stream, VariableList const &args,
H A DEmulateInstruction.h378 virtual bool TestEmulation(Stream &out_stream, ArchSpec &arch,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h63 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h70 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Diterator40 ostream_type* out_stream; // exposition only
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h78 bool TestEmulation(lldb_private::Stream &out_stream, in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1274 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local
1276 main_file_buffer.write(out_stream); in RewriteExpression()
1277 out_stream.flush(); in RewriteExpression()