HomeSort by: relevance | last modified time | path
    Searched refs:vbuf_put (Results 1 - 2 of 2) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/util/
vbuf.h 18 * 3) VBUF_PUT() operations that automatically handle buffer empty and
21 * where calling VBUF_PUT() is not possible or desirable.
89 #define VBUF_PUT(v,c) ((v)->cnt > 0 ? --(v)->cnt, \
90 (int) (*(v)->ptr++ = (c)) : vbuf_put((v),(c)))
96 extern int vbuf_put(VBUF *, int);
vbuf.c 14 /* int VBUF_PUT(bp, ch)
77 /* VBUF_PUT() stores one character into the specified buffer. The result
78 /* is the stored character, or VBUF_EOF in case of problems. VBUF_PUT()
82 /* made available, so that it can be accessed without using VBUF_PUT().
128 /* put_ready() is called when VBUF_PUT() detects a buffer-full condition.
132 /* bytes available for access without using VBUF_PUT(). The result is 0
183 /* vbuf_put - handle write buffer full condition */
185 int vbuf_put(VBUF *bp, int ch) function
187 return (bp->put_ready(bp) ? VBUF_EOF : VBUF_PUT(bp, ch));
226 if (VBUF_PUT(bp, buf[count]) < 0
    [all...]

Completed in 132 milliseconds