Symbol: BUFLEN
bin/sh/mknodes.c
136
char name[BUFLEN];
bin/sh/mknodes.c
137
char tag[BUFLEN];
bin/sh/mknodes.c
166
char name[BUFLEN];
bin/sh/mknodes.c
167
char type[BUFLEN];
bin/sh/mknodes.c
168
char decl[2 * BUFLEN];
bin/sh/mknodes.c
428
if (p - line > BUFLEN)
libexec/bootpd/tools/bootptest/bootptest.c
170
sndbuf = malloc(BUFLEN);
libexec/bootpd/tools/bootptest/bootptest.c
171
rcvbuf = malloc(BUFLEN);
libexec/bootpd/tools/bootptest/bootptest.c
360
n = BUFLEN - sizeof(*bp) + BP_VEND_LEN;
libexec/bootpd/tools/bootptest/bootptest.c
413
n = recvfrom(s, rcvbuf, BUFLEN, 0,
share/examples/libusb20/bulk.c
119
uint8_t in_buf[BUFLEN];
share/examples/libusb20/bulk.c
132
if ((rv = libusb20_tr_bulk_intr_sync(xfr_in, in_buf, BUFLEN, &rlen, TIMEOUT))
share/examples/libusb20/bulk.c
201
for (out_len = 0; argc > 0 && out_len < BUFLEN; out_len++, argc--)
share/examples/libusb20/bulk.c
214
BUFLEN, optind);
share/examples/libusb20/bulk.c
60
uint8_t out_buf[BUFLEN];
share/examples/libusb20/control.c
163
uint8_t in_buf[BUFLEN];
share/examples/libusb20/control.c
166
if ((rv = libusb20_tr_bulk_intr_sync(xfr_intr, in_buf, BUFLEN, &rlen, TIMEOUT))
share/examples/libusb20/control.c
372
for (out_len = 0; argc > 0 && out_len < BUFLEN; out_len++, argc--)
share/examples/libusb20/control.c
385
BUFLEN, optind);
share/examples/libusb20/control.c
63
uint8_t out_buf[BUFLEN];
tools/tools/netrate/udpecho/udpecho.c
118
buf = malloc(BUFLEN);
tools/tools/netrate/udpecho/udpecho.c
152
n = recvfrom(s, buf, BUFLEN, 0,
usr.bin/gzip/gzip.c
1550
char buf[BUFLEN];
usr.bin/gzip/gzip.c
524
outbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
525
inbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
545
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c%c%c%s",
usr.bin/gzip/gzip.c
554
if (i >= BUFLEN)
usr.bin/gzip/gzip.c
562
z.avail_out = BUFLEN - i;
usr.bin/gzip/gzip.c
575
if (write(out, outbufp, BUFLEN) != BUFLEN) {
usr.bin/gzip/gzip.c
581
out_tot += BUFLEN;
usr.bin/gzip/gzip.c
583
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
587
in_size = read(in, inbufp, BUFLEN);
usr.bin/gzip/gzip.c
632
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
644
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c",
usr.bin/gzip/gzip.c
714
if ((outbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
718
if ((inbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
726
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
744
BUFLEN - z.avail_in);
usr.bin/gzip/gzip.c
913
wr = BUFLEN - z.avail_out;
usr.bin/gzip/gzip.c
937
z.avail_out = BUFLEN;
usr.bin/gzip/unbzip2.c
44
inbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
46
outbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
70
n = read(in, inbuf, BUFLEN);
usr.bin/gzip/unbzip2.c
82
bzs.avail_out = BUFLEN;
usr.bin/gzip/unbzip2.c
93
n = write(out, outbuf, BUFLEN - bzs.avail_out);