Searched refs:consume (Results 1 - 19 of 19) sorted by relevance

/freebsd-10-stable/crypto/heimdal/appl/telnet/telnet/
H A Dring.c43 * full: [consume, supply)
44 * empty: [supply, consume)
71 #define ring_empty(d) (((d)->consume == (d)->supply) && \
73 #define ring_full(d) (((d)->supply == (d)->consume) && \
89 ring->supply = ring->consume = ring->bottom = buffer;
119 if (ring->mark == ring->consume) {
156 (ring_subtract(ring, ring->mark, ring->consume) < count)) {
160 if (ring->consume < ring->clearto &&
161 ring->clearto <= ring->consume + count)
163 else if (ring->consume
[all...]
H A Dnetwork.c133 n = send(net, (char *)netoring.consume, n, 0); /* normal write */
143 n = send(net, (char *)netoring.consume, 1, MSG_OOB);/* URGENT data */
158 Dump('>', netoring.consume, n);
H A Dring.h43 * full: [consume, supply)
44 * empty: [supply, consume)
49 unsigned char *consume, /* where data comes out of */ member in struct:__anon5025
H A Dterminal.c113 n = TerminalWrite((char *)ttyoring.consume, n);
118 Dump('>', ttyoring.consume, n);
H A Dtelnet.c1602 sbp = netiring.consume;
1848 tbp = ttyiring.consume;
/freebsd-10-stable/contrib/telnet/telnet/
H A Dring.c47 * full: [consume, supply)
48 * empty: [supply, consume)
96 #define ring_empty(d) (((d)->consume == (d)->supply) && \
98 #define ring_full(d) (((d)->supply == (d)->consume) && \
110 ring->supply = ring->consume = ring->bottom = buffer;
140 if (ring->mark == ring->consume) {
177 (ring_subtract(ring, ring->mark, ring->consume) < count)) {
181 if (ring->consume < ring->clearto &&
182 ring->clearto <= ring->consume + count)
184 else if (ring->consume
[all...]
H A Dnetwork.c142 n = send(net, (char *)netoring.consume, n, 0); /* normal write */
152 n = send(net, (char *)netoring.consume, 1, MSG_OOB);/* URGENT data */
167 Dump('>', netoring.consume, n);
H A Dring.h52 * full: [consume, supply)
53 * empty: [supply, consume)
58 unsigned char *consume, /* where data comes out of */ member in struct:__anon4660
H A Dterminal.c135 n = TerminalWrite(ttyoring.consume, n);
140 Dump('>', ttyoring.consume, n);
H A Dtelnet.c1688 sbp = netiring.consume;
1933 tbp = ttyiring.consume;
/freebsd-10-stable/usr.bin/dtc/
H A Dinput_buffer.hh161 inline bool consume(char c) function in class:dtc::input_buffer
176 bool consume(const char *str);
H A Dfdt.cc228 input.consume('"');
245 while (!input.consume('>'))
250 if (input.consume('&'))
310 while (!input.consume(']'))
387 input.consume('$');
446 } while (input.consume(','));
447 if (semicolonTerminated && !input.consume(';'))
630 if (!input.consume('{'))
635 while (valid && !input.consume('}'))
643 if (input.consume('
[all...]
H A Dinput_buffer.cc93 input_buffer::consume(const char *str) function in class:dtc::input_buffer
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c896 static int consume(struct archive_read* a, int64_t how_many) { function
914 * NOTE: if `pvalue_len` is NOT NULL, the caller needs to manually consume
955 * consume those bytes, since the caller has all the
964 * needs to consume. This is why we handle
966 if(ARCHIVE_OK != consume(a, 1 + i)) {
986 if(ARCHIVE_OK != consume(a, 9)) {
1075 return ARCHIVE_OK == consume(a, 4) ? 1 : 0;
1084 return ARCHIVE_OK == consume(a, 8) ? 1 : 0;
1197 if(ARCHIVE_OK != consume(a, value_len)) {
1213 if(ARCHIVE_OK != consume(
[all...]
/freebsd-10-stable/lib/libc/isc/
H A Dev_streams.c48 static void consume(evStream *str, size_t bytes);
232 consume(evStream *str, size_t bytes) { function
279 consume(str, bytes);
302 consume(str, bytes);
/freebsd-10-stable/usr.bin/script/
H A Dscript.c85 static void consume(FILE *, off_t, char *, int);
396 consume(FILE *fp, off_t len, char *buf, int reg) function
465 (void)consume(fp, stamp.scr_len, buf, reg);
471 (void)consume(fp, stamp.scr_len, buf, reg);
475 (void)consume(fp, stamp.scr_len, buf, reg);
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DYAMLParser.cpp387 bool consume(uint32_t Expected);
912 bool Scanner::consume(uint32_t Expected) { function in class:Scanner
1077 consume('%');
1451 if (!consume('>'))
/freebsd-10-stable/sys/dev/isp/
H A DDriverManual.txt350 DMA addresses for any command may in fact consume more Request Queue
/freebsd-10-stable/contrib/sqlite3/
H A Dshell.c1355 ** won't consume the semicolon terminator.

Completed in 273 milliseconds