Searched refs:stream (Results 1 - 25 of 2100) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/libbind/dist/port/sco42/include/sys/
H A Dmbuf.h5 #include <sys/stream.h>
/netbsd-current/external/bsd/libbind/dist/port/sco50/include/sys/
H A Dmbuf.h5 #include <sys/stream.h>
/netbsd-current/external/bsd/blocklist/etc/
H A Dblocklistd.conf4 ssh stream * * * 3 6h
5 ftp stream * * * 3 6h
7 #6161 stream tcp6 christos * 2 10m
15 #* stream tcp * = = =
/netbsd-current/share/doc/psd/20.ipctut/
H A Dustreamwrite.c55 perror("opening stream socket");
64 perror("connecting stream socket");
68 perror("writing on stream socket");
H A Dstreamwrite.c59 perror("opening stream socket");
73 perror("connecting stream socket");
77 perror("writing on stream socket");
H A Dsocketpair.c52 perror("opening stream socket pair");
61 perror("reading stream message");
64 perror("writing stream message");
69 perror("writing stream message");
71 perror("reading stream message");
/netbsd-current/external/lgpl3/gmp/dist/mpq/
H A Dout_str.c1 /* mpq_out_str(stream,base,integer) */
37 mpq_out_str (FILE *stream, int base, mpq_srcptr q) argument
41 if (stream == NULL)
42 stream = stdout;
44 written = mpz_out_str (stream, base, mpq_numref (q));
48 putc ('/', stream);
49 written += 1 + mpz_out_str (stream, base, mpq_denref (q));
52 return ferror (stream) ? 0 : written;
/netbsd-current/regress/lib/libc/ieeefp/testfloat/
H A DwriteHex.c63 void writeHex_flag( flag a, FILE *stream )
66 fputc( a ? '1' : '0', stream );
70 static void writeHex_bits8( bits8 a, FILE *stream )
76 fputc( '0' + digit, stream );
79 fputc( '0' + digit, stream );
83 static void writeHex_bits12( int16 a, FILE *stream )
89 fputc( '0' + digit, stream );
92 fputc( '0' + digit, stream );
95 fputc( '0' + digit, stream );
99 static void writeHex_bits16( bits16 a, FILE *stream )
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dexpprint.c79 dump_for_expression (struct ui_file *stream, int depth, enum exp_opcode op) argument
81 gdb_printf (stream, _("%*sOperation: %s\n"), depth, "", op_name (op));
85 dump_for_expression (struct ui_file *stream, int depth, const std::string &str) argument
87 gdb_printf (stream, _("%*sString: %s\n"), depth, "", str.c_str ());
91 dump_for_expression (struct ui_file *stream, int depth, struct type *type) argument
93 gdb_printf (stream, _("%*sType: "), depth, "");
94 type_print (type, nullptr, stream, 0);
95 gdb_printf (stream, "\n");
99 dump_for_expression (struct ui_file *stream, int depth, CORE_ADDR addr) argument
101 gdb_printf (stream,
106 dump_for_expression(struct ui_file *stream, int depth, internalvar *ivar) argument
113 dump_for_expression(struct ui_file *stream, int depth, symbol *sym) argument
120 dump_for_expression(struct ui_file *stream, int depth, bound_minimal_symbol msym) argument
128 dump_for_expression(struct ui_file *stream, int depth, const block *bl) argument
134 dump_for_expression(struct ui_file *stream, int depth, const block_symbol &sym) argument
143 dump_for_expression(struct ui_file *stream, int depth, type_instance_flags flags) argument
155 dump_for_expression(struct ui_file *stream, int depth, enum c_string_type_values flags) argument
183 dump_for_expression(struct ui_file *stream, int depth, enum range_flag flags) argument
199 dump_for_expression(struct ui_file *stream, int depth, const std::unique_ptr<ada_component> &comp) argument
206 dump(struct ui_file *stream, int depth) const argument
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dsmtp_stream.c7 /* smtp stream I/O support
11 /* void smtp_stream_setup(stream, timeout, enable_deadline,
13 /* VSTREAM *stream;
18 /* void smtp_printf(stream, format, ...)
19 /* VSTREAM *stream;
22 /* void smtp_flush(stream)
23 /* VSTREAM *stream;
25 /* int smtp_fgetc(stream)
26 /* VSTREAM *stream;
28 /* int smtp_get(vp, stream, maxle
230 smtp_timeout_reset(VSTREAM *stream) argument
244 smtp_longjmp(VSTREAM *stream, int err, const char *context) argument
263 smtp_stream_setup(VSTREAM *stream, int maxtime, int enable_deadline, int min_data_rate) argument
284 smtp_flush(VSTREAM *stream) argument
305 smtp_vprintf(VSTREAM *stream, const char *fmt, va_list ap) argument
328 smtp_printf(VSTREAM *stream, const char *fmt,...) argument
339 smtp_fgetc(VSTREAM *stream) argument
361 smtp_get(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
384 smtp_get_noexcept(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
461 smtp_fputs(const char *cp, ssize_t todo, VSTREAM *stream) argument
486 smtp_fwrite(const char *cp, ssize_t todo, VSTREAM *stream) argument
510 smtp_fread_buf(VSTRING *vp, ssize_t todo, VSTREAM *stream) argument
539 smtp_fputc(int ch, VSTREAM *stream) argument
[all...]
H A Ddeliver_completed.c11 /* void deliver_completed(stream, offset)
12 /* VSTREAM *stream;
49 void deliver_completed(VSTREAM *stream, long offset) argument
59 if (rec_put_type(stream, REC_TYPE_DONE, offset) < 0
60 || vstream_fflush(stream))
61 msg_fatal("update queue file %s: %m", VSTREAM_PATH(stream));
/netbsd-current/external/lgpl3/mpc/dist/src/
H A Dout_str.c1 /* mpc_out_str -- Output a complex number on a given stream.
26 mpc_out_str (FILE *stream, int base, size_t n, mpc_srcptr op, mpc_rnd_t rnd) { argument
29 if (stream == NULL)
30 stream = stdout; /* fprintf does not allow NULL as first argument */
32 fprintf (stream, "(");
33 size += mpfr_out_str (stream, base, n, mpc_realref(op), MPC_RND_RE(rnd));
34 fprintf (stream, " ");
35 size += mpfr_out_str (stream, base, n, mpc_imagref(op), MPC_RND_RE(rnd));
36 fprintf (stream, ")");
/netbsd-current/tools/compat/
H A Dputc_unlocked.c41 putc_unlocked(int c, FILE *stream) argument
44 putc(c, stream);
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dgetline.c29 getline (char **lineptr, size_t *n, FILE *stream) argument
31 return getdelim (lineptr, n, '\n', stream);
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dgetline.c29 getline (char **lineptr, size_t *n, FILE *stream) argument
31 return getdelim (lineptr, n, '\n', stream);
/netbsd-current/common/dist/zlib/
H A Dcompress.c31 z_stream stream; local
39 stream.zalloc = (alloc_func)0;
40 stream.zfree = (free_func)0;
41 stream.opaque = (voidpf)0;
43 err = deflateInit(&stream, level);
46 stream.next_out = dest;
47 stream.avail_out = 0;
48 stream.next_in = __UNCONST(source);
49 stream.avail_in = 0;
52 if (stream
[all...]
H A Duncompr.c27 an incomplete zlib stream.
35 z_stream stream; local
39 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
51 stream.next_in = __UNCONST(source);
52 stream.avail_in = 0;
53 stream.zalloc = (alloc_func)0;
54 stream.zfree = (free_func)0;
55 stream.opaque = (voidpf)0;
57 err = inflateInit(&stream);
60 stream
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dexpprint.c37 print_expression (struct expression *exp, struct ui_file *stream) argument
41 print_subexp (exp, &pc, stream, PREC_NULL);
51 struct ui_file *stream, enum precedence prec)
53 exp->language_defn->la_exp_desc->print_subexp (exp, pos, stream, prec);
60 struct ui_file *stream, enum precedence prec)
84 type_print (exp->elts[pc + 1].type, "", stream, 0);
90 fputs_filtered (exp->elts[pc + 1].type->name (), stream);
91 fputs_filtered ("::", stream);
94 fputs_filtered (&exp->elts[pc + 3].string, stream);
105 stream,
50 print_subexp(struct expression *exp, int *pos, struct ui_file *stream, enum precedence prec) argument
59 print_subexp_standard(struct expression *exp, int *pos, struct ui_file *stream, enum precedence prec) argument
725 dump_raw_expression(struct expression *exp, struct ui_file *stream, const char *note) argument
768 dump_subexp(struct expression *exp, struct ui_file *stream, int elt) argument
794 dump_subexp_body(struct expression *exp, struct ui_file *stream, int elt) argument
802 dump_subexp_body_standard(struct expression *exp, struct ui_file *stream, int elt) argument
1153 dump_prefix_expression(struct expression *exp, struct ui_file *stream) argument
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/zlib/
H A Duncompr.c25 an incomplete zlib stream.
33 z_stream stream; local
37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
49 stream.next_in = (z_const Bytef *)source;
50 stream.avail_in = 0;
51 stream.zalloc = (alloc_func)0;
52 stream.zfree = (free_func)0;
53 stream.opaque = (voidpf)0;
55 err = inflateInit(&stream);
58 stream
[all...]
/netbsd-current/external/gpl3/binutils/dist/zlib/
H A Duncompr.c25 an incomplete zlib stream.
33 z_stream stream; local
37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
49 stream.next_in = (z_const Bytef *)source;
50 stream.avail_in = 0;
51 stream.zalloc = (alloc_func)0;
52 stream.zfree = (free_func)0;
53 stream.opaque = (voidpf)0;
55 err = inflateInit(&stream);
58 stream
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/zlib/
H A Duncompr.c25 an incomplete zlib stream.
33 z_stream stream; local
37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
49 stream.next_in = (z_const Bytef *)source;
50 stream.avail_in = 0;
51 stream.zalloc = (alloc_func)0;
52 stream.zfree = (free_func)0;
53 stream.opaque = (voidpf)0;
55 err = inflateInit(&stream);
58 stream
[all...]
/netbsd-current/external/gpl3/gdb/dist/zlib/
H A Duncompr.c25 an incomplete zlib stream.
33 z_stream stream; local
37 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
49 stream.next_in = (z_const Bytef *)source;
50 stream.avail_in = 0;
51 stream.zalloc = (alloc_func)0;
52 stream.zfree = (free_func)0;
53 stream.opaque = (voidpf)0;
55 err = inflateInit(&stream);
58 stream
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dlto-compress.h31 extern void lto_compress_block (struct lto_compression_stream *stream,
33 extern void lto_end_compression (struct lto_compression_stream *stream);
38 extern void lto_uncompress_block (struct lto_compression_stream *stream,
40 extern void lto_end_uncompression (struct lto_compression_stream *stream,
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dlto-compress.h31 extern void lto_compress_block (struct lto_compression_stream *stream,
33 extern void lto_end_compression (struct lto_compression_stream *stream);
38 extern void lto_uncompress_block (struct lto_compression_stream *stream,
40 extern void lto_end_uncompression (struct lto_compression_stream *stream,
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dvstream.c24 /* VSTREAM *vstream_memreopen(stream, string, flags)
25 /* VSTREAM *stream;
29 /* int vstream_fclose(stream)
30 /* VSTREAM *stream;
32 /* int vstream_fdclose(stream)
33 /* VSTREAM *stream;
38 /* VSTREAM *vstream_fprintf(stream, format, ...)
39 /* VSTREAM *stream;
42 /* int VSTREAM_GETC(stream)
43 /* VSTREAM *stream;
698 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
739 vstream_fflush_some(VSTREAM *stream, ssize_t to_flush) argument
860 vstream_fflush_delayed(VSTREAM *stream) argument
895 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
1029 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
1078 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
1144 vstream_fpurge(VSTREAM *stream, int direction) argument
1196 vstream_fseek(VSTREAM *stream, off_t offset, int whence) argument
1283 vstream_ftell(VSTREAM *stream) argument
1338 VSTREAM *stream; local
1361 VSTREAM *stream; local
1388 VSTREAM *stream; local
1402 vstream_fflush(VSTREAM *stream) argument
1434 vstream_fclose(VSTREAM *stream) argument
1480 vstream_fdclose(VSTREAM *stream) argument
1508 VSTREAM *stream = VSTREAM_OUT; local
1519 vstream_fprintf(VSTREAM *stream, const char *fmt,...) argument
1531 vstream_fputs(const char *str, VSTREAM *stream) argument
1570 vstream_control(VSTREAM *stream, int name,...) argument
1828 vstream_memreopen(VSTREAM *stream, VSTRING *string, int flags) argument
[all...]

Completed in 682 milliseconds

1234567891011>>