Symbol: BUFLEN
bin/sh/mknodes.c
122
char name[BUFLEN];
bin/sh/mknodes.c
123
char tag[BUFLEN];
bin/sh/mknodes.c
152
char name[BUFLEN];
bin/sh/mknodes.c
153
char type[BUFLEN];
bin/sh/mknodes.c
154
char decl[2 * BUFLEN];
bin/sh/mknodes.c
414
if (p - line > BUFLEN)
crypto/openssl/crypto/riscvcap.c
69
char envstrupper[BUFLEN];
crypto/openssl/crypto/riscvcap.c
70
char buf[BUFLEN];
crypto/openssl/crypto/riscvcap.c
83
if (len < BUFLEN - 1) {
lib/libdevctl/devctl.c
189
req.dr_buffer.length = BUFLEN;
lib/libdevctl/devctl.c
197
if (errno == ENAMETOOLONG && req.dr_buffer.length != BUFLEN) {
libexec/bootpd/tools/bootptest/bootptest.c
166
sndbuf = malloc(BUFLEN);
libexec/bootpd/tools/bootptest/bootptest.c
167
rcvbuf = malloc(BUFLEN);
libexec/bootpd/tools/bootptest/bootptest.c
356
n = BUFLEN - sizeof(*bp) + BP_VEND_LEN;
libexec/bootpd/tools/bootptest/bootptest.c
409
n = recvfrom(s, rcvbuf, BUFLEN, 0,
share/examples/libusb20/bulk.c
120
uint8_t in_buf[BUFLEN];
share/examples/libusb20/bulk.c
133
if ((rv = libusb20_tr_bulk_intr_sync(xfr_in, in_buf, BUFLEN, &rlen, TIMEOUT))
share/examples/libusb20/bulk.c
202
for (out_len = 0; argc > 0 && out_len < BUFLEN; out_len++, argc--)
share/examples/libusb20/bulk.c
215
BUFLEN, optind);
share/examples/libusb20/bulk.c
61
uint8_t out_buf[BUFLEN];
share/examples/libusb20/control.c
164
uint8_t in_buf[BUFLEN];
share/examples/libusb20/control.c
167
if ((rv = libusb20_tr_bulk_intr_sync(xfr_intr, in_buf, BUFLEN, &rlen, TIMEOUT))
share/examples/libusb20/control.c
373
for (out_len = 0; argc > 0 && out_len < BUFLEN; out_len++, argc--)
share/examples/libusb20/control.c
386
BUFLEN, optind);
share/examples/libusb20/control.c
64
uint8_t out_buf[BUFLEN];
tests/sys/netlink/netlink_socket.c
126
char buf[BUFLEN];
tests/sys/netlink/netlink_socket.c
143
ATF_REQUIRE(recv(fd, buf, BUFLEN, 0) > sizeof(hdr));
tests/sys/netlink/netlink_socket.c
74
char buf[BUFLEN];
usr.bin/gzip/gzip.c
1710
char buf[BUFLEN];
usr.bin/gzip/gzip.c
570
outbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
571
inbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
587
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c%c%c%s",
usr.bin/gzip/gzip.c
596
if (i >= BUFLEN)
usr.bin/gzip/gzip.c
603
z.avail_out = BUFLEN - i;
usr.bin/gzip/gzip.c
616
if (write_retry(out, outbufp, BUFLEN) != BUFLEN) {
usr.bin/gzip/gzip.c
622
out_tot += BUFLEN;
usr.bin/gzip/gzip.c
624
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
628
in_size = read(in, inbufp, BUFLEN);
usr.bin/gzip/gzip.c
674
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
686
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c",
usr.bin/gzip/gzip.c
752
if ((outbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
756
if ((inbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
764
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
783
BUFLEN - z.avail_in);
usr.bin/gzip/gzip.c
955
wr = BUFLEN - z.avail_out;
usr.bin/gzip/gzip.c
977
z.avail_out = BUFLEN;
usr.bin/gzip/unbzip2.c
103
if (!tflag && bzs.avail_out != BUFLEN) {
usr.bin/gzip/unbzip2.c
106
n = write(out, outbuf, BUFLEN - bzs.avail_out);
usr.bin/gzip/unbzip2.c
45
inbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
47
outbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
72
n = read(in, inbuf, BUFLEN);
usr.bin/gzip/unbzip2.c
85
bzs.avail_out = BUFLEN;
usr.bin/gzip/unzstd.c
43
ibuf = malloc(BUFLEN);
usr.bin/gzip/unzstd.c
45
obuf = malloc(BUFLEN);
usr.bin/gzip/unzstd.c
58
zob.size = BUFLEN;
usr.bin/gzip/unzstd.c
63
res = read(in, ibuf, BUFLEN);