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

1 2

  /src/external/ibm-public/postfix/dist/src/util/
vstring_vstream.h 58 (vstring_get((s), (p)) == VSTREAM_EOF ? 0 : (s))
60 (vstring_get_nonl((s), (p)) == VSTREAM_EOF ? 0 : (s))
62 (vstring_get_null((s), (p)) == VSTREAM_EOF ? 0 : (s))
64 (vstring_get_bound((s), (p), (l)) == VSTREAM_EOF ? 0 : (s))
66 (vstring_get_nonl_bound((s), (p), (l)) == VSTREAM_EOF ? 0 : (s))
vstring_vstream.c 73 /* last character read, typically the record terminator, or VSTREAM_EOF.
129 (VSTRING_LEN(vp) > (base_len) ? vstring_end(vp)[-1] : VSTREAM_EOF)
141 while ((c = VSTREAM_GETC(fp)) != VSTREAM_EOF) {
160 while ((c = VSTREAM_GETC(fp)) != VSTREAM_EOF && c != '\n')
176 while ((c = VSTREAM_GETC(fp)) != VSTREAM_EOF && c != 0)
196 while (bound-- > 0 && (c = VSTREAM_GETC(fp)) != VSTREAM_EOF) {
219 while (bound-- > 0 && (c = VSTREAM_GETC(fp)) != VSTREAM_EOF && c != '\n')
239 while (bound-- > 0 && (c = VSTREAM_GETC(fp)) != VSTREAM_EOF && c != 0)
logwriter.c 36 /* open logfile. The result is zero if successful, VSTREAM_EOF
41 /* the file, VSTREAM_EOF otherwise.
44 /* result is zero if successful, VSTREAM_EOF if any operation
117 return (VSTREAM_EOF);
139 return (err ? VSTREAM_EOF : 0);
readlline.c 106 while ((ch = VSTREAM_GETC(fp)) != VSTREAM_EOF && ch != '\n') {
121 if (ch == VSTREAM_EOF)
124 if ((next = VSTREAM_GETC(fp)) != VSTREAM_EOF)
vstream.c 233 /* is 0 in case of success, VSTREAM_EOF in case of problems.
252 /* The result is VSTREAM_EOF when end-of-file is reached or if a read
259 /* stream. The result is the stored character, or VSTREAM_EOF in
266 /* and returns the character, or VSTREAM_EOF in case of problems.
273 /* VSTREAM_EOF in case of problems.
288 /* vstream_fflush() returns 0 in case of success, VSTREAM_EOF in
298 /* VSTREAM_EOF in case of problems.
776 return ((bp->flags & VSTREAM_FLAG_ERR) ? VSTREAM_EOF : 0);
792 return ((bp->flags & VSTREAM_FLAG_ERR) ? VSTREAM_EOF : 0);
794 return (VSTREAM_EOF);
    [all...]
attr_scan_plain.c 207 if (ch == VSTREAM_EOF) {
316 if ((ch = VSTREAM_GETC(fp)) == VSTREAM_EOF)
371 "input attribute name")) == VSTREAM_EOF)
412 while (ch != '\n' && (ch = VSTREAM_GETC(fp)) != VSTREAM_EOF)
552 case VSTREAM_EOF:
attr_scan0.c 199 if ((ch = vstring_get_null(plain_buf, fp)) == VSTREAM_EOF) {
300 if ((ch = VSTREAM_GETC(fp)) == VSTREAM_EOF)
355 "input attribute name")) == VSTREAM_EOF)
505 case VSTREAM_EOF:
netstring.c 214 case VSTREAM_EOF:
346 if (vstream_fflush(stream) == VSTREAM_EOF)
439 case VSTREAM_EOF:
attr_scan64.c 212 if (ch == VSTREAM_EOF) {
303 if ((ch = VSTREAM_GETC(fp)) == VSTREAM_EOF)
358 "input attribute name")) == VSTREAM_EOF)
399 while (ch != '\n' && (ch = VSTREAM_GETC(fp)) != VSTREAM_EOF)
574 case VSTREAM_EOF:
edit_file.c 98 /* edit_file_close() returns zero on success, VSTREAM_EOF on
349 return (VSTREAM_EOF);
ctable.c 275 if (vstring_get_nonl(data_buf, VSTREAM_IN) == VSTREAM_EOF)
307 if (vstring_get_nonl(key_buf, VSTREAM_IN) == VSTREAM_EOF)
  /src/external/ibm-public/postfix/dist/src/global/
rec_streamlf.c 90 if ((ch = VSTREAM_GETC(stream)) == VSTREAM_EOF)
record.c 211 if (VSTREAM_PUTC(type, stream) == VSTREAM_EOF)
223 if (VSTREAM_PUTC(len_byte, stream) == VSTREAM_EOF) {
257 if ((type = VSTREAM_GETC(stream)) == VSTREAM_EOF)
271 if ((len_byte = VSTREAM_GETC(stream)) == VSTREAM_EOF) {
283 while (len-- > 0 && VSTREAM_GETC(stream) != VSTREAM_EOF)
mail_addr_crunch.c 185 if (vstring_get_nonl(buf, VSTREAM_IN) == VSTREAM_EOF)
212 if (vstring_get_nonl(extension, VSTREAM_IN) == VSTREAM_EOF)
219 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF) {
memcache_proto.c 89 if (next_char != VSTREAM_EOF)
133 || vstream_fputs("\r\n", stream) == VSTREAM_EOF)
addr_match_list.c 130 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF)
smtp_stream.c 107 /* The result is the last character read, or VSTREAM_EOF.
422 if (next_char != VSTREAM_EOF)
460 while ((next_char = VSTREAM_GETC(stream)) != VSTREAM_EOF
481 || vstream_fputs("\r\n", stream) == VSTREAM_EOF);
562 if (stat == VSTREAM_EOF)
scache.c 360 if ((status = vstring_get_nonl(buf, fp)) != VSTREAM_EOF) {
383 while (get_buffer(buf, VSTREAM_IN, interactive) != VSTREAM_EOF) {
compat_level.c 363 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF) {
377 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF) {
408 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF) {
mail_copy.c 244 if (type == REC_TYPE_NORM && vstream_fputs(eol, dst) == VSTREAM_EOF)
safe_ultostr.c 239 while (vstring_get_nonl(buf, VSTREAM_IN) != VSTREAM_EOF) {
  /src/external/ibm-public/postfix/dist/src/xsasl/
xsasl_dovecot_server.c 300 if (vstream_fflush(sasl_stream) == VSTREAM_EOF) {
309 while (vstring_get_nonl(line_str, sasl_stream) != VSTREAM_EOF) {
580 server->impl->sasl_stream) != VSTREAM_EOF) {
708 if (vstream_fflush(server->impl->sasl_stream) != VSTREAM_EOF)
740 if (vstream_fflush(server->impl->sasl_stream) == VSTREAM_EOF) {
  /src/external/ibm-public/postfix/dist/src/postconf/
postconf_edit.c 121 while ((last_char = vstring_get(buf, src)) != VSTREAM_EOF) {
143 if ((ch = VSTREAM_GETC(src)) != VSTREAM_EOF)
146 || vstring_get(line_buf, src) == VSTREAM_EOF)
  /src/external/ibm-public/postfix/dist/src/smtpd/
smtpd_token.c 216 if (vstring_get_nonl(vp, VSTREAM_IN) == VSTREAM_EOF)
  /src/external/ibm-public/postfix/dist/src/smtpstone/
qmqp-sink.c 130 if (VSTREAM_GETC(state->stream) == VSTREAM_EOF)

Completed in 33 milliseconds

1 2