Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/subversion/subversion/libsvn_ra_svn/
H A Dstreams.c42 svn_stream_t *out_stream; member
79 svn_stream_t *out_stream, in svn_ra_svn__stream_from_streams() argument
91 file = svn_stream__aprfile(out_stream); in svn_ra_svn__stream_from_streams()
93 return svn_ra_svn__stream_create(in_stream, out_stream, in svn_ra_svn__stream_from_streams()
186 svn_stream_t *out_stream, in svn_ra_svn__stream_create() argument
193 s->out_stream = out_stream; in svn_ra_svn__stream_create()
203 return svn_error_trace(svn_stream_write(stream->out_stream, data, len)); in svn_ra_svn__stream_write()
H A Ddeprecated.c267 svn_stream_t *out_stream, in svn_ra_svn_create_conn4() argument
273 return svn_ra_svn_create_conn5(sock, in_stream, out_stream, in svn_ra_svn_create_conn4()
288 svn_stream_t *out_stream = NULL; in svn_ra_svn_create_conn3() local
293 out_stream = svn_stream_from_aprfile2(out_file, FALSE, pool); in svn_ra_svn_create_conn3()
295 return svn_ra_svn_create_conn4(sock, in_stream, out_stream, in svn_ra_svn_create_conn3()
H A Dra_svn.h207 svn_stream_t *out_stream,
214 svn_stream_t *out_stream,
H A Dmarshal.c184 svn_stream_t *out_stream, in svn_ra_svn_create_conn5() argument
196 assert((sock && !in_stream && !out_stream) in svn_ra_svn_create_conn5()
197 || (!sock && in_stream && out_stream)); in svn_ra_svn_create_conn5()
231 conn->stream = svn_ra_svn__stream_from_streams(in_stream, out_stream, in svn_ra_svn_create_conn5()
H A Dclient.c465 svn_stream_t *in_stream, *out_stream; in handle_child_process_error() local
473 out_stream = svn_stream_from_aprfile2(out_file, FALSE, pool); in handle_child_process_error()
475 conn = svn_ra_svn_create_conn5(NULL, in_stream, out_stream, in handle_child_process_error()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp669 out_stream->Printf( in ReadArray()
729 out_stream->Printf( in ReadDictionary()
780 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
788 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
823 if (!out_stream) in TestEmulation()
832 out_stream->Printf( in TestEmulation()
839 out_stream->Printf( in TestEmulation()
857 out_stream->Printf( in TestEmulation()
882 out_stream->Printf( in TestEmulation()
898 out_stream->Printf("Emulation test succeeded."); in TestEmulation()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/subversion/subversion/svnlook/
H A Dsvnlook.c847 print_diff_tree(svn_stream_t *out_stream, in print_diff_tree() argument
974 SVN_ERR(svn_stream_printf_from_utf8(out_stream, encoding, pool, in print_diff_tree()
1007 SVN_ERR(svn_stream_printf_from_utf8(out_stream, encoding, pool, in print_diff_tree()
1020 outfile = svn_stream__aprfile(out_stream); in print_diff_tree()
1092 out_stream, diff, orig_path, new_path, in print_diff_tree()
1153 out_stream, encoding, orig_label, new_label, pool)); in print_diff_tree()
1155 SVN_ERR(display_prop_diffs(out_stream, encoding, in print_diff_tree()
1170 SVN_ERR(print_diff_tree(out_stream, encoding, root, base_root, node, in print_diff_tree()
1538 svn_stream_t *out_stream; in do_diff() local
1567 SVN_ERR(svn_stream_for_stdout(&out_stream, pool)); in do_diff()
[all …]
/freebsd-13.1/contrib/subversion/subversion/svndumpfilter/
H A Dsvndumpfilter.c193 svn_stream_t *out_stream; member
275 SVN_ERR(svn_repos__dump_magic_header_record(pb->out_stream, version, pool)); in magic_header_record()
383 SVN_ERR(svn_repos__dump_revision_record(rb->pb->out_stream, in output_revision()
449 SVN_ERR(svn_repos__dump_uuid_header_record(pb->out_stream, uuid, pool)); in uuid_record()
835 SVN_ERR(svn_repos__dump_node_record(nb->rb->pb->out_stream, in set_fulltext()
843 *stream = nb->rb->pb->out_stream; in set_fulltext()
869 SVN_ERR(svn_repos__dump_node_record(nb->rb->pb->out_stream, in close_node()
879 SVN_ERR(svn_stream_write(nb->rb->pb->out_stream, "\n\n", &len)); in close_node()
1045 SVN_ERR(svn_stream_for_stdout(&baton->out_stream, pool)); in parse_baton_initialize()
/freebsd-13.1/contrib/subversion/subversion/include/
H A Dsvn_ra_svn.h215 svn_stream_t *out_stream,
233 svn_stream_t *out_stream,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h61 bool TestEmulation(Stream *out_stream, ArchSpec &arch, in TestEmulation() argument
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h162 lldb::OptionValueSP ReadArray(FILE *in_file, Stream *out_stream,
165 lldb::OptionValueSP ReadDictionary(FILE *in_file, Stream *out_stream);
H A DEmulateInstruction.h370 virtual bool TestEmulation(Stream *out_stream, ArchSpec &arch,
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBInstruction.cpp284 StreamFile out_stream(out_sp); in Print() local
287 inst_sp->Dump(&out_stream, 0, true, false, nullptr, &sc, nullptr, &format, in Print()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h64 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.h71 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Diterator40 ostream_type* out_stream; // exposition only
/freebsd-13.1/contrib/subversion/subversion/svnadmin/
H A Dsvnadmin.c1430 svn_stream_t *out_stream; in subcommand_dump() local
1450 out_stream = svn_stream_from_aprfile2(file, FALSE, pool); in subcommand_dump()
1453 SVN_ERR(svn_stream_for_stdout(&out_stream, pool)); in subcommand_dump()
1479 SVN_ERR(svn_repos_dump_fs4(repos, out_stream, lower, upper, in subcommand_dump()
1497 svn_stream_t *out_stream; in subcommand_dump_revprops() local
1516 out_stream = svn_stream_from_aprfile2(file, FALSE, pool); in subcommand_dump_revprops()
1519 SVN_ERR(svn_stream_for_stdout(&out_stream, pool)); in subcommand_dump_revprops()
1525 SVN_ERR(svn_repos_dump_fs4(repos, out_stream, lower, upper, in subcommand_dump_revprops()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.h79 bool TestEmulation(lldb_private::Stream *out_stream, in TestEmulation() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1299 llvm::raw_string_ostream out_stream(fixed_expression); in RewriteExpression() local
1301 main_file_buffer.write(out_stream); in RewriteExpression()
1302 out_stream.flush(); in RewriteExpression()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp811 StreamSP out_stream = GetDebugger().GetAsyncOutputStream(); in IOHandlerInputComplete() local
812 out_stream->Printf("error: %s\n", error.AsCString()); in IOHandlerInputComplete()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h138 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
H A DEmulateInstructionARM.cpp14386 bool EmulateInstructionARM::TestEmulation(Stream *out_stream, ArchSpec &arch, in TestEmulation() argument
14389 out_stream->Printf("TestEmulation: Missing test data.\n"); in TestEmulation()
14402 out_stream->Printf("TestEmulation: Error reading opcode from test file.\n"); in TestEmulation()
14418 out_stream->Printf("TestEmulation: Invalid arch.\n"); in TestEmulation()
14428 out_stream->Printf("TestEmulation: Failed to find 'before' state.\n"); in TestEmulation()
14434 out_stream->Printf("TestEmulation: Failed loading 'before' state.\n"); in TestEmulation()
14441 out_stream->Printf("TestEmulation: Failed to find 'after' state.\n"); in TestEmulation()
14447 out_stream->Printf("TestEmulation: Failed loading 'after' state.\n"); in TestEmulation()
14459 out_stream->Printf("TestEmulation: EvaluateInstruction() failed.\n"); in TestEmulation()
14465 out_stream->Printf( in TestEmulation()