Searched refs:BUFSIZ (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dglobal.c62 char ptyobuf[BUFSIZ+NETSLOP], *pfrontp, *pbackp;
64 char netibuf[BUFSIZ], *netip;
66 char netobuf[BUFSIZ+NETSLOP], *nfrontp, *nbackp;
99 remaining = BUFSIZ - (nfrontp - netobuf);
H A Dauthenc.c43 if (nfrontp + len < netobuf + BUFSIZ) {
/freebsd-current/lib/libc/stdio/
H A Dsetbuf.c41 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
H A Dmakebuf.c92 *bufsize = BUFSIZ;
99 *bufsize = BUFSIZ;
/freebsd-current/usr.sbin/ugidfw/
H A Dugidfw.c73 char errstr[BUFSIZ], charstr[BUFSIZ];
77 error = bsde_parse_rule(argc, argv, &rule, BUFSIZ, errstr);
83 error = bsde_add_rule(&rulenum, &rule, BUFSIZ, errstr);
88 if (bsde_rule_to_string(&rule, charstr, BUFSIZ) == -1)
97 char errstr[BUFSIZ], charstr[BUFSIZ];
101 rule_slots = bsde_get_rule_slots(BUFSIZ, errstr);
108 rule_count = bsde_get_rule_count(BUFSIZ, errstr);
115 error = bsde_get_rule(i, &rule, BUFSIZ, errst
[all...]
/freebsd-current/crypto/heimdal/appl/ftp/common/
H A Dbuffer.c43 * there is such a field, otherwise BUFSIZ.
51 new_sz = BUFSIZ;
54 new_sz = max(BUFSIZ, st->st_blksize);
/freebsd-current/crypto/openssl/crypto/evp/
H A Devp_key.c17 #ifndef BUFSIZ
18 # define BUFSIZ 256 macro
56 char buff[BUFSIZ];
65 (len >= BUFSIZ) ? BUFSIZ - 1 : len) < 0
68 (len >= BUFSIZ) ? BUFSIZ - 1 : len,
72 OPENSSL_cleanse(buff, BUFSIZ);
/freebsd-current/contrib/tcp_wrappers/
H A Dmyvsyslog.c23 char fbuf[BUFSIZ];
H A Dfakelog.c29 char buf[BUFSIZ];
/freebsd-current/sys/contrib/xz-embedded/userspace/
H A Dbytetest.c17 static uint8_t out[BUFSIZ];
51 b.out_size = uncomp_size < BUFSIZ ? uncomp_size : BUFSIZ;
69 b.out_size = uncomp_size < BUFSIZ
70 ? uncomp_size : BUFSIZ;
H A Dxzminidec.c22 static uint8_t in[BUFSIZ];
23 static uint8_t out[BUFSIZ];
59 b.out_size = BUFSIZ;
/freebsd-current/crypto/openssl/crypto/ui/
H A Dui_util.c15 #ifndef BUFSIZ
16 #define BUFSIZ 256 macro
22 char buff[BUFSIZ];
26 UI_UTIL_read_pw(buf, buff, (length > BUFSIZ) ? BUFSIZ : length,
28 OPENSSL_cleanse(buff, BUFSIZ);
/freebsd-current/usr.sbin/route6d/misc/
H A Dcksum.c34 unsigned short buf[BUFSIZ];
/freebsd-current/contrib/ntp/libntp/
H A Dfindconfig.c19 static char result[BUFSIZ];
20 char hostname[BUFSIZ], *cp;
30 if (gethostname(hostname, BUFSIZ) >= 0) {
/freebsd-current/contrib/blocklist/port/
H A Dfgetln.c55 bufsiz = BUFSIZ;
65 size_t nbufsiz = bufsiz + BUFSIZ;
77 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
/freebsd-current/contrib/xz/src/xzdec/
H A Dxzdec.c167 uint8_t in_buf[BUFSIZ];
168 uint8_t out_buf[BUFSIZ];
172 strm->avail_out = BUFSIZ;
179 strm->avail_in = fread(in_buf, 1, BUFSIZ, file);
204 const size_t write_size = BUFSIZ - strm->avail_out;
217 strm->avail_out = BUFSIZ;
/freebsd-current/usr.sbin/lpr/lptest/
H A Dlptest.c46 char outbuf[BUFSIZ];
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c105 char shareline[BUFSIZ], unshareline[BUFSIZ];
/freebsd-current/contrib/libfido2/openbsd-compat/
H A Dbsd-getline.c58 if ((*buf = malloc(BUFSIZ)) == NULL)
60 *bufsiz = BUFSIZ;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-getline.c56 if ((*buf = malloc(BUFSIZ)) == NULL)
58 *bufsiz = BUFSIZ;
/freebsd-current/contrib/expat/examples/
H A Delements.c92 void *const buf = XML_GetBuffer(parser, BUFSIZ);
99 const size_t len = fread(buf, 1, BUFSIZ, stdin);
H A Doutline.c95 void *const buf = XML_GetBuffer(parser, BUFSIZ);
102 const size_t len = fread(buf, 1, BUFSIZ, stdin);
/freebsd-current/usr.sbin/rtadvd/
H A Dadvcap.c51 #ifndef BUFSIZ
52 #define BUFSIZ 1024 macro
113 char ibuf[BUFSIZ];
138 cnt = read(tf, ibuf, BUFSIZ);
153 if (cp >= bp + BUFSIZ - 1) {
184 char tcbuf[BUFSIZ];
213 if (l > BUFSIZ) {
215 q[BUFSIZ - (p-holdtbuf)] = 0;
/freebsd-current/contrib/telnet/telnet/
H A Dnetwork.c53 unsigned char netobuf[2*BUFSIZ], netibuf[BUFSIZ];
/freebsd-current/contrib/telnet/libtelnet/
H A Dread_password.c80 char key_string[BUFSIZ];
82 if (max > BUFSIZ) {

Completed in 231 milliseconds

1234567891011>>