HomeSort by: relevance | last modified time | path
    Searched refs:stream (Results 1 - 25 of 2170) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/blocklist/etc/
blocklistd.conf 4 ssh stream * * * 3 6h
5 ftp stream * * * 3 6h
7 #6161 stream tcp6 christos * 2 10m
15 #* stream tcp * = = =
  /src/external/bsd/libbind/dist/port/sco42/include/sys/
mbuf.h 5 #include <sys/stream.h>
  /src/external/bsd/libbind/dist/port/sco50/include/sys/
mbuf.h 5 #include <sys/stream.h>
  /src/share/doc/psd/20.ipctut/
ustreamwrite.c 55 perror("opening stream socket");
64 perror("connecting stream socket");
68 perror("writing on stream socket");
streamwrite.c 59 perror("opening stream socket");
73 perror("connecting stream socket");
77 perror("writing on stream socket");
  /src/external/gpl3/gdb/dist/gdb/
expprint.c 61 dump_for_expression (struct ui_file *stream, int depth, enum exp_opcode op)
63 gdb_printf (stream, _("%*sOperation: "), depth, "");
68 gdb_printf (stream, "<unknown %d>", op);
73 gdb_puts (#name, stream); \
79 gdb_puts ("\n", stream);
83 dump_for_expression (struct ui_file *stream, int depth, const std::string &str)
85 gdb_printf (stream, _("%*sString: %s\n"), depth, "", str.c_str ());
89 dump_for_expression (struct ui_file *stream, int depth, struct type *type)
91 gdb_printf (stream, _("%*sType: "), depth, "");
92 type_print (type, nullptr, stream, 0)
    [all...]
p-typeprint.c 40 struct ui_file *stream, int show, int level,
54 type_print_varspec_prefix (type, stream, show, 0, flags);
58 gdb_puts (varstring, stream);
64 gdb_puts (" : ", stream);
70 type_print_varspec_prefix (type, stream, show, 0, flags);
73 type_print_base (type, stream, show, level, flags);
78 type_print_varspec_suffix (type, stream, show, 0, demangled_args,
87 struct ui_file *stream) const
90 gdb_printf (stream, "type ");
91 gdb_printf (stream, "%s = ", new_symbol->print_name ())
209 stream, 0, passed_a_ptr, flags); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
expprint.c 61 dump_for_expression (struct ui_file *stream, int depth, enum exp_opcode op)
63 gdb_printf (stream, _("%*sOperation: "), depth, "");
68 gdb_printf (stream, "<unknown %d>", op);
73 gdb_puts (#name, stream); \
79 gdb_puts ("\n", stream);
83 dump_for_expression (struct ui_file *stream, int depth, const std::string &str)
85 gdb_printf (stream, _("%*sString: %s\n"), depth, "", str.c_str ());
89 dump_for_expression (struct ui_file *stream, int depth, struct type *type)
91 gdb_printf (stream, _("%*sType: "), depth, "");
92 type_print (type, nullptr, stream, 0)
    [all...]
p-typeprint.c 41 struct ui_file *stream, int show, int level,
55 type_print_varspec_prefix (type, stream, show, 0, flags);
59 gdb_puts (varstring, stream);
65 gdb_puts (" : ", stream);
71 type_print_varspec_prefix (type, stream, show, 0, flags);
74 type_print_base (type, stream, show, level, flags);
79 type_print_varspec_suffix (type, stream, show, 0, demangled_args,
88 struct ui_file *stream) const
91 gdb_printf (stream, "type ");
92 gdb_printf (stream, "%s = ", new_symbol->print_name ())
210 stream, 0, passed_a_ptr, flags); local
    [all...]
  /src/external/lgpl3/gmp/dist/mpq/
out_str.c 1 /* mpq_out_str(stream,base,integer) */
37 mpq_out_str (FILE *stream, int base, mpq_srcptr q)
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;
  /src/regress/lib/libc/ieeefp/testfloat/
writeHex.c 63 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...]
  /src/external/bsd/zstd/dist/tests/
seqgen.c 34 SEQ_stream stream; local
35 stream.state = 0;
36 XXH64_reset(&stream.xxh, 0);
37 stream.seed = seed;
38 return stream;
44 static size_t SEQ_gen_matchLength(SEQ_stream* stream, unsigned value,
56 switch ((ml_state)stream->state) {
60 stream->bytesLeft = 1;
63 *op = SEQ_randByte(&stream->seed) & 0xFF;
65 stream->saved = SEQ_randByte(&stream->seed) & 0xFF
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
smtp_stream.c 7 /* 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, maxlen, flags
    [all...]
  /src/common/dist/zlib/
compress.c 26 z_stream stream; local
34 stream.zalloc = (alloc_func)0;
35 stream.zfree = (free_func)0;
36 stream.opaque = (voidpf)0;
38 err = deflateInit(&stream, level);
41 stream.next_out = dest;
42 stream.avail_out = 0;
43 stream.next_in = __UNCONST(source);
44 stream.avail_in = 0;
47 if (stream.avail_out == 0)
    [all...]
uncompr.c 27 an incomplete zlib stream.
31 z_stream stream; local
35 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
47 stream.next_in = __UNCONST(source);
48 stream.avail_in = 0;
49 stream.zalloc = (alloc_func)0;
50 stream.zfree = (free_func)0;
51 stream.opaque = (voidpf)0;
53 err = inflateInit(&stream);
56 stream.next_out = dest
    [all...]
  /src/tools/compat/
putc_unlocked.c 41 putc_unlocked(int c, FILE *stream)
44 putc(c, stream);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
getline.c 29 getline (char **lineptr, size_t *n, FILE *stream)
31 return getdelim (lineptr, n, '\n', stream);
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
getline.c 29 getline (char **lineptr, size_t *n, FILE *stream)
31 return getdelim (lineptr, n, '\n', stream);
  /src/external/gpl3/binutils/dist/zlib/
compress.c 24 z_stream stream; local
32 stream.zalloc = (alloc_func)0;
33 stream.zfree = (free_func)0;
34 stream.opaque = (voidpf)0;
36 err = deflateInit(&stream, level);
39 stream.next_out = dest;
40 stream.avail_out = 0;
41 stream.next_in = (z_const Bytef *)source;
42 stream.avail_in = 0;
45 if (stream.avail_out == 0)
    [all...]
uncompr.c 25 an incomplete zlib stream.
29 z_stream stream; local
33 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
45 stream.next_in = (z_const Bytef *)source;
46 stream.avail_in = 0;
47 stream.zalloc = (alloc_func)0;
48 stream.zfree = (free_func)0;
49 stream.opaque = (voidpf)0;
51 err = inflateInit(&stream);
54 stream.next_out = dest
    [all...]
  /src/external/lgpl3/mpc/dist/src/
out_str.c 1 /* 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) {
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, ")");
  /src/external/gpl3/binutils.old/dist/zlib/
uncompr.c 25 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.next_out = dest
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
uncompr.c 25 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.next_out = dest
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
uncompr.c 25 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.next_out = dest
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
lto-compress.h 31 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,

Completed in 45 milliseconds

1 2 3 4 5 6 7 8 91011>>