Home
last modified time | relevance | path

Searched refs:out_stream (Results 1 – 25 of 25) 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.h145 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_redirect_output()
120 if (!__kmp_stderr && out_stream == kmp_err) { in __kmp_redirect_output()
123 if (!__kmp_stdout && out_stream == kmp_out) { in __kmp_redirect_output()
127 auto stream = ((out_stream == kmp_out) ? __kmp_stdout : __kmp_stderr); in __kmp_redirect_output()
134 __kmp_vprintf(enum kmp_io out_stream,char const * format,va_list ap) __kmp_vprintf() argument
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp736 OptionValueSP Instruction::ReadArray(FILE *in_file, Stream &out_stream, in ReadArray() argument
746 out_stream.Printf( in ReadArray()
795 OptionValueSP Instruction::ReadDictionary(FILE *in_file, Stream &out_stream) { in ReadDictionary() argument
806 out_stream.Printf( in ReadDictionary()
841 out_stream.Printf("Instruction::ReadDictionary: Failure executing " in ReadDictionary()
856 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
864 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
897 bool Instruction::TestEmulation(Stream &out_stream, const char *file_name) { in TestEmulation() argument
899 out_stream.Printf("Instruction::TestEmulation: Missing file_name."); in TestEmulation()
904 out_stream.Printf( in TestEmulation()
[all …]
H A DFormatEntity.cpp1175 static void PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument
1181 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs()
1183 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs()
1184 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
1187 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs()
1190 out_stream.PutCString(close_paren); in PrettyPrintFunctionNameWithArgs()
1192 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs()
2599 Stream &out_stream, VariableList const &args, in PrettyPrintFunctionArguments() argument
2637 out_stream.PutCString(", "); in PrettyPrintFunctionArguments()
2640 out_stream.Printf("%s=%s", var_name, var_representation.str().c_str()); in PrettyPrintFunctionArguments()
[all …]
/freebsd/crypto/krb5/src/util/support/
H A Dipc_stream.c105 int32_t krb5int_ipc_stream_new (k5_ipc_stream *out_stream) in krb5int_ipc_stream_new() argument
110 if (!out_stream) { err = k5_check_error (EINVAL); } in krb5int_ipc_stream_new()
122 *out_stream = stream; in krb5int_ipc_stream_new()
/freebsd/crypto/krb5/src/include/
H A Dk5-ipc_stream.h36 int32_t krb5int_ipc_stream_new (k5_ipc_stream *out_stream);
/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/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp209 static bool PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument
220 out_stream.PutCString(return_type); in PrettyPrintFunctionNameWithArgs()
221 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
224 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs()
225 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs()
227 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs()
229 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs()
233 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs()
234 out_stream.PutCString(qualifiers); in PrettyPrintFunctionNameWithArgs()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBInstruction.cpp294 StreamFile out_stream(out_sp); in Print() local
297 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/LoongArch/
H A DEmulateInstructionLoongArch.h55 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionLoongArch.cpp179 Stream &out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.h92 bool TestEmulation(Stream &out_stream, ArchSpec &arch,
H A DEmulateInstructionRISCV.cpp1752 bool EmulateInstructionRISCV::TestEmulation(Stream &out_stream, ArchSpec &arch, in TestEmulation() argument
/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.h262 void PrettyPrintFunctionArguments(Stream &out_stream, VariableList const &args,
H A DEmulateInstruction.h414 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/Commands/
H A DCommandObjectCommands.cpp2690 Stream &out_stream = result.GetOutputStream(); in DoExecute() local
2692 out_stream << "Deleted command:"; in DoExecute()
2694 out_stream << ' '; in DoExecute()
2695 out_stream << command[idx].c_str(); in DoExecute()
2697 out_stream << '\n'; in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1454 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local
1456 main_file_buffer.write(out_stream); in RewriteExpression()