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

1234567891011>>

/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_binmode.c38 void set_binmode(FILE *stream) argument
42 _setmode(stream, O_BINARY);
44 setmode(fileno(stream), O_BINARY);
47 (void)stream;
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dclose-stream.h2 int close_stream (FILE *stream);
H A Dgetline.c27 getline (char **lineptr, size_t *n, FILE *stream) argument
29 return getdelim (lineptr, n, '\n', stream);
H A Dversion-etc.c41 version_etc_va (FILE *stream, argument
59 fprintf (stream, "%s (%s) %s\n", command_name, package, version);
61 fprintf (stream, "%s %s\n", package, version);
66 fprintf (stream, version_etc_copyright, _("(C)"), COPYRIGHT_YEAR);
75 stream);
77 fputs (_("Modified to support extended attributes.\n"), stream);
86 vfprintf (stream, _("Written by %s.\n"), authors);
90 vfprintf (stream, _("Written by %s and %s.\n"), authors);
94 vfprintf (stream, _("Written by %s, %s, and %s.\n"), authors);
100 vfprintf (stream,
167 version_etc(FILE *stream, const char *command_name, const char *package, const char *version, ...) argument
[all...]
H A Dclose-stream.c1 /* Close a stream, with nicer error checking than fclose's.
22 #include "close-stream.h"
41 printf can succeed in writing to the internal stream buffer, and yet
50 that writes to STREAM -- just let the internal stream state record
54 close_stream (FILE *stream) argument
56 bool some_pending = (__fpending (stream) != 0);
57 bool prev_fail = (ferror (stream) != 0);
58 bool fclose_fail = (fclose (stream) != 0);
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter6/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/sudo-72/src/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (Bytef*)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (Bytef*)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]
/macosx-10.9.5/zlib-53/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (Bytef*)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter5/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dsmtp_stream.c5 /* smtp stream I/O support
9 /* void smtp_stream_setup(stream, timeout, enable_deadline)
10 /* VSTREAM *stream;
14 /* void smtp_printf(stream, format, ...)
15 /* VSTREAM *stream;
18 /* void smtp_flush(stream)
19 /* VSTREAM *stream;
21 /* int smtp_fgetc(stream)
22 /* VSTREAM *stream;
24 /* int smtp_get(vp, stream, maxle
174 smtp_timeout_reset(VSTREAM *stream) argument
190 smtp_longjmp(VSTREAM *stream, int err, const char *context) argument
209 smtp_stream_setup(VSTREAM *stream, int maxtime, int enable_deadline) argument
228 smtp_flush(VSTREAM *stream) argument
249 smtp_vprintf(VSTREAM *stream, const char *fmt, va_list ap) argument
272 smtp_printf(VSTREAM *stream, const char *fmt,...) argument
283 smtp_fgetc(VSTREAM *stream) argument
307 smtp_get_full(VSTRING *vp, VSTREAM *stream, ssize_t bound, int binary, int expect_eof, int flags) argument
406 smtp_get(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
412 smtp_get_to_eof(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
416 smtp_get_binary_to_eof(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
422 smtp_discard(VSTREAM *stream, off_t size) argument
438 smtp_fputs(const char *cp, ssize_t todo, VSTREAM *stream) argument
463 smtp_fwrite(const char *cp, ssize_t todo, VSTREAM *stream) argument
487 smtp_fputc(int ch, VSTREAM *stream) argument
[all...]
H A Ddeliver_completed.c9 /* void deliver_completed(stream, offset)
10 /* VSTREAM *stream;
47 void deliver_completed(VSTREAM *stream, long offset) argument
57 if (rec_put_type(stream, REC_TYPE_DONE, offset) < 0
58 || vstream_fflush(stream))
59 msg_fatal("update queue file %s: %m", VSTREAM_PATH(stream));
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DNavigatorUserMediaSuccessCallback.idl28 boolean handleEvent(LocalMediaStream stream);
/macosx-10.9.5/cctools-845/include/mach-o/
H A Drld.h34 NXStream *stream,
40 NXStream *stream,
48 NXStream *stream);
51 NXStream *stream,
56 NXStream *stream,
60 NXStream *stream,
64 NXStream *stream,
71 NXStream *stream,
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter2/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter3/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter4/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/macosx-10.9.5/bash-92/bash-3.2/support/
H A Dmksignames.c48 write_signames (stream)
49 FILE *stream;
53 fprintf (stream, "/* This file was automatically created by %s.\n",
55 fprintf (stream, " Do not edit. Edit support/signames.c instead. */\n\n");
56 fprintf (stream,
59 fprintf (stream, "extern char *signal_names[];\n\n");
60 fprintf (stream, "extern void initialize_signames __P((void));\n\n");
62 fprintf (stream, "char *signal_names[NSIG + 4] = {\n");
65 fprintf (stream, " \"%s\",\n", signal_names[i]);
67 fprintf (stream, " (cha
79 FILE *stream; local
[all...]
/macosx-10.9.5/text_cmds-87/sort/
H A Dversion-etc.c43 version_etc_va (FILE *stream, argument
65 fprintf (stream, "%s (%s) %s\n", command_name, package, version);
67 fprintf (stream, "%s %s\n", package, version);
72 fprintf (stream, version_etc_copyright, _("(C)"), COPYRIGHT_YEAR);
81 stream);
90 vfprintf (stream, _("Written by %s.\n"), authors);
94 vfprintf (stream, _("Written by %s and %s.\n"), authors);
98 vfprintf (stream, _("Written by %s, %s, and %s.\n"), authors);
104 vfprintf (stream, _("Written by %s, %s, %s,\nand %s.\n"), authors);
110 vfprintf (stream,
171 version_etc(FILE *stream, const char *command_name, const char *package, const char *version, ...) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dvstream.c18 /* int vstream_fclose(stream)
19 /* VSTREAM *stream;
21 /* int vstream_fdclose(stream)
22 /* VSTREAM *stream;
27 /* VSTREAM *vstream_fprintf(stream, format, ...)
28 /* VSTREAM *stream;
31 /* int VSTREAM_GETC(stream)
32 /* VSTREAM *stream;
34 /* int VSTREAM_PUTC(ch, stream)
42 /* int vstream_ungetc(stream, c
620 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
659 vstream_fflush_some(VSTREAM *stream, ssize_t to_flush) argument
768 vstream_fflush_delayed(VSTREAM *stream) argument
803 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
921 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
966 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
1026 vstream_fpurge(VSTREAM *stream, int direction) argument
1078 vstream_fseek(VSTREAM *stream, off_t offset, int whence) argument
1142 vstream_ftell(VSTREAM *stream) argument
1191 VSTREAM *stream; local
1228 VSTREAM *stream; local
1242 vstream_fflush(VSTREAM *stream) argument
1253 vstream_fclose(VSTREAM *stream) argument
1294 vstream_fdclose(VSTREAM *stream) argument
1322 VSTREAM *stream = VSTREAM_OUT; local
1333 vstream_fprintf(VSTREAM *stream, const char *fmt,...) argument
1345 vstream_fputs(const char *str, VSTREAM *stream) argument
1357 vstream_control(VSTREAM *stream, int name,...) argument
1623 vstream_limit_init(VSTREAM *stream, off_t limit) argument
1660 vstream_limit_reached(const VSTREAM *stream) argument
1668 vstream_limit_deinit(VSTREAM *stream) argument
[all...]
H A Dnetstring.c5 /* netstring stream I/O support
9 /* void netstring_setup(stream, timeout)
10 /* VSTREAM *stream;
13 /* void netstring_except(stream, exception)
14 /* VSTREAM *stream;
17 /* VSTRING *netstring_get(stream, buf, limit)
18 /* VSTREAM *stream;
22 /* void netstring_put(stream, data, len)
23 /* VSTREAM *stream;
27 /* void netstring_put_multi(stream, dat
171 netstring_setup(VSTREAM *stream, int timeout) argument
181 netstring_except(VSTREAM *stream, int exception) argument
188 netstring_get_length(VSTREAM *stream) argument
217 netstring_get_data(VSTREAM *stream, VSTRING *buf, ssize_t len) argument
247 netstring_get_terminator(VSTREAM *stream) argument
255 netstring_get(VSTREAM *stream, VSTRING *buf, ssize_t limit) argument
268 netstring_put(VSTREAM *stream, const char *data, ssize_t len) argument
282 netstring_put_multi(VSTREAM *stream,...) argument
329 netstring_fflush(VSTREAM *stream) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/smtpd/
H A Dsmtpd_binary.h37 int (*output_rec)(VSTREAM *stream, int rec_type,
39 int binary_filter_rec_put(VSTREAM *stream, int rec_type, const char *data,
41 int binary_filter_flush(void *context, VSTREAM *stream);
42 void binary_filter_stop(void *context, VSTREAM *stream);
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dsetlinebuf.c1 /* setlinebuf.c - line-buffer a stdio stream. */
35 sh_setlinebuf (stream)
36 FILE *stream;
53 return (setvbuf (stream, _IOLBF, local_linebuf, LBUF_BUFSIZE));
55 return (setvbuf (stream, local_linebuf, _IOLBF, LBUF_BUFSIZE));
59 setlinebuf (stream);
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (Bytef*)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]

Completed in 401 milliseconds

1234567891011>>