| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM/ |
| H A D | EmulationStateARM.cpp | 218 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() 249 out_stream->Printf("memory does not match\n"); in CompareState() 250 out_stream->Printf("got memory:\n"); in CompareState() 252 out_stream->Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState() 253 out_stream->Printf("expected memory:\n"); in CompareState() 255 out_stream->Printf("0x%08" PRIx64 ": 0x%08x\n", p.first, p.second); in CompareState()
|
| H A D | EmulationStateARM.h | 38 lldb_private::Stream *out_stream);
|
| H A D | EmulateInstructionARM.h | 136 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | Disassembler.cpp | 694 OptionValueSP Instruction::ReadArray(FILE *in_file, Stream *out_stream, in ReadArray() argument 704 out_stream->Printf( in ReadArray() 753 OptionValueSP Instruction::ReadDictionary(FILE *in_file, Stream *out_stream) { in ReadDictionary() argument 764 out_stream->Printf( in ReadDictionary() 799 out_stream->Printf("Instruction::ReadDictionary: Failure executing " in ReadDictionary() 815 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary() 823 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary() 857 bool Instruction::TestEmulation(Stream *out_stream, const char *file_name) { in TestEmulation() argument 858 if (!out_stream) in TestEmulation() 862 out_stream->Printf("Instruction::TestEmulation: Missing file_name."); in TestEmulation() [all …]
|
| H A D | FormatEntity.cpp | 1083 static void PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument 1089 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs() 1091 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs() 1092 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs() 1095 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs() 1098 out_stream.PutCString(close_paren); in PrettyPrintFunctionNameWithArgs() 1100 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs() 2421 Stream &out_stream, VariableList const &args, in PrettyPrintFunctionArguments() argument 2459 out_stream.PutCString(", "); in PrettyPrintFunctionArguments() 2462 out_stream.Printf("%s=%s", var_name, var_representation.str().c_str()); in PrettyPrintFunctionArguments() [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | c-opts.c | 63 static FILE *out_stream; variable 1077 out_stream = stdout; in c_common_post_options() 1079 out_stream = fopen (out_fname, "w"); in c_common_post_options() 1081 if (out_stream == NULL) in c_common_post_options() 1091 init_pp_output (out_stream); in c_common_post_options() 1215 deps_stream = out_stream; in c_common_finish() 1228 if (deps_stream && deps_stream != out_stream in c_common_finish() 1232 if (out_stream && (ferror (out_stream) || fclose (out_stream))) in c_common_finish()
|
| H A D | c-ppoutput.c | 92 init_pp_output (FILE *out_stream) in init_pp_output() argument 129 print.outf = out_stream; in init_pp_output()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | c-opts.c | 42 static FILE *out_stream; variable 1441 out_stream = stdout; in preprocess_file() 1443 out_stream = fopen (out_fname, "w"); in preprocess_file() 1445 if (out_stream == NULL) in preprocess_file() 1448 cpp_preprocess_file (parse_in, in_fname, out_stream); in preprocess_file() 1496 deps_stream = out_stream; in c_common_finish() 1509 if (deps_stream && deps_stream != out_stream in c_common_finish() 1513 if (out_stream && (ferror (out_stream) || fclose (out_stream))) in c_common_finish()
|
| H A D | cppmain.c | 57 cpp_preprocess_file (pfile, in_fname, out_stream) in cpp_preprocess_file() argument 60 FILE *out_stream; 69 pfile->print.outf = out_stream;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.cpp | 179 static bool PrettyPrintFunctionNameWithArgs(Stream &out_stream, in PrettyPrintFunctionNameWithArgs() argument 190 out_stream.PutCString(return_type); in PrettyPrintFunctionNameWithArgs() 191 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs() 194 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs() 195 out_stream.PutChar('('); in PrettyPrintFunctionNameWithArgs() 197 FormatEntity::PrettyPrintFunctionArguments(out_stream, args, exe_scope); in PrettyPrintFunctionNameWithArgs() 199 out_stream.PutChar(')'); in PrettyPrintFunctionNameWithArgs() 203 out_stream.PutChar(' '); in PrettyPrintFunctionNameWithArgs() 204 out_stream.PutCString(qualifiers); in PrettyPrintFunctionNameWithArgs()
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_result.py | 348 out_stream = sys.stdout 357 self.assertEqual(out_stream.getvalue(), 'foo\n') 372 self.assertEqual(out_stream.getvalue(), '')
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/PPC64/ |
| H A D | EmulateInstructionPPC64.h | 60 bool TestEmulation(Stream *out_stream, ArchSpec &arch, in TestEmulation() argument
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBInstruction.cpp | 295 StreamFile out_stream(out_sp); in Print() local 298 inst_sp->Dump(&out_stream, 0, true, false, /*show_control_flow_kind=*/false, in Print()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 859 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete() local 860 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete() 1780 Stream &out_stream = result.GetOutputStream(); in DoExecute() local 1782 out_stream << "Deleted command:"; in DoExecute() 1784 out_stream << ' '; in DoExecute() 1785 out_stream << command[idx].c_str(); in DoExecute() 1787 out_stream << '\n'; in DoExecute()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/ |
| H A D | EmulateInstructionRISCV.h | 64 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/LoongArch/ |
| H A D | EmulateInstructionLoongArch.h | 55 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
|
| H A D | EmulateInstructionLoongArch.cpp | 190 Stream *out_stream, ArchSpec &arch, OptionValueDictionary *test_data) { in TestEmulation() argument
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Disassembler.h | 179 lldb::OptionValueSP ReadArray(FILE *in_file, Stream *out_stream, 182 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream *out_stream);
|
| H A D | FormatEntity.h | 251 static void PrettyPrintFunctionArguments(Stream &out_stream,
|
| H A D | EmulateInstruction.h | 378 virtual bool TestEmulation(Stream *out_stream, ArchSpec &arch,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.h | 63 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/MIPS64/ |
| H A D | EmulateInstructionMIPS64.h | 70 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
|
| /openbsd-src/gnu/llvm/libcxx/include/experimental/ |
| H A D | iterator | 40 ostream_type* out_stream; // exposition only
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/MIPS/ |
| H A D | EmulateInstructionMIPS.h | 78 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionParser.cpp | 1290 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local 1292 main_file_buffer.write(out_stream); in RewriteExpression() 1293 out_stream.flush(); in RewriteExpression()
|