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

1234567891011>>

/macosx-10.10.1/postfix-255/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
305 smtp_get(VSTRING *vp, VSTREAM *stream, ssize_t bound, int flags) argument
383 smtp_fputs(const char *cp, ssize_t todo, VSTREAM *stream) argument
408 smtp_fwrite(const char *cp, ssize_t todo, VSTREAM *stream) argument
432 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.10.1/curl-83.1.2/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.10.1/gnutar-453/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.10.1/llvmCore-3425.0.34/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.10.1/llvmCore-3425.0.34/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.10.1/sudo-73/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.10.1/zlib-55/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.10.1/llvmCore-3425.0.34/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.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dsass.js27 var urlTokens = function(stream, state){
28 var ch = stream.peek();
31 stream.next();
35 stream.next();
36 stream.eatSpace();
40 state.tokenizer = buildStringTokenizer(stream.next());
47 var multilineComment = function(stream, state) {
48 if (stream.skipTo("*/")){
49 stream.next();
50 stream
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/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.10.1/llvmCore-3425.0.34/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.10.1/llvmCore-3425.0.34/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.10.1/bash-94.1.2/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.10.1/text_cmds-88/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.10.1/postfix-255/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
925 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
974 VSTREAM *stream = VBUF_TO_APPL(bp, VSTREAM, buf); local
1038 vstream_fpurge(VSTREAM *stream, int direction) argument
1090 vstream_fseek(VSTREAM *stream, off_t offset, int whence) argument
1154 vstream_ftell(VSTREAM *stream) argument
1203 VSTREAM *stream; local
1240 VSTREAM *stream; local
1254 vstream_fflush(VSTREAM *stream) argument
1265 vstream_fclose(VSTREAM *stream) argument
1306 vstream_fdclose(VSTREAM *stream) argument
1334 VSTREAM *stream = VSTREAM_OUT; local
1345 vstream_fprintf(VSTREAM *stream, const char *fmt,...) argument
1357 vstream_fputs(const char *str, VSTREAM *stream) argument
1369 vstream_control(VSTREAM *stream, int name,...) argument
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCompression.cpp62 z_stream stream;
63 memset(&stream, 0, sizeof(stream));
64 stream.zalloc = zAlloc;
65 stream.zfree = zFree;
66 stream.data_type = Z_BINARY;
67 stream.opaque = Z_NULL;
68 stream.avail_in = dataLength;
69 stream.next_in = const_cast<uint8_t*>(data);
75 stream
132 z_stream stream; local
[all...]
/macosx-10.10.1/bash-94.1.2/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.10.1/rsync-45/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...]
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dcompress.c60 z_stream stream; local
63 stream.next_in = (Bytef*)source;
64 stream.avail_in = (uInt)sourceLen;
67 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
69 stream.next_out = dest;
70 stream.avail_out = (uInt)*destLen;
71 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
73 stream.zalloc = (alloc_func)0;
74 stream.zfree = (free_func)0;
75 stream
[all...]
H A Duncompr.c63 z_stream stream; local
66 stream.next_in = (Bytef*)source;
67 stream.avail_in = (uInt)sourceLen;
69 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
71 stream.next_out = dest;
72 stream.avail_out = (uInt)*destLen;
73 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
75 stream.zalloc = (alloc_func)0;
76 stream.zfree = (free_func)0;
78 err = inflateInit(&stream);
[all...]

Completed in 155 milliseconds

1234567891011>>