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

1234567891011>>

/freebsd-10-stable/crypto/openssl/crypto/des/
H A Dread2pwd.c120 char buf[BUFSIZ], buff[BUFSIZ];
122 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
124 OPENSSL_cleanse(buf, BUFSIZ);
125 OPENSSL_cleanse(buff, BUFSIZ);
133 char buf[BUFSIZ], buff[BUFSIZ];
135 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
137 OPENSSL_cleanse(buf, BUFSIZ);
138 OPENSSL_cleanse(buff, BUFSIZ);
[all...]
/freebsd-10-stable/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-10-stable/usr.sbin/ugidfw/
H A Dugidfw.c74 char errstr[BUFSIZ], charstr[BUFSIZ];
78 error = bsde_parse_rule(argc, argv, &rule, BUFSIZ, errstr);
84 error = bsde_add_rule(&rulenum, &rule, BUFSIZ, errstr);
89 if (bsde_rule_to_string(&rule, charstr, BUFSIZ) == -1)
98 char errstr[BUFSIZ], charstr[BUFSIZ];
102 rule_slots = bsde_get_rule_slots(BUFSIZ, errstr);
109 rule_count = bsde_get_rule_count(BUFSIZ, errstr);
116 error = bsde_get_rule(i, &rule, BUFSIZ, errst
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ui/
H A Dui_util.c62 char buff[BUFSIZ];
66 UI_UTIL_read_pw(buf, buff, (length > BUFSIZ) ? BUFSIZ : length,
68 OPENSSL_cleanse(buff, BUFSIZ);
/freebsd-10-stable/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-10-stable/contrib/mdocml/
H A Dcompat_fgetln.c60 bufsiz = BUFSIZ;
70 size_t nbufsiz = bufsiz + BUFSIZ;
83 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL)
/freebsd-10-stable/contrib/tcp_wrappers/
H A Dmyvsyslog.c26 char fbuf[BUFSIZ];
H A Dfakelog.c35 char buf[BUFSIZ];
/freebsd-10-stable/lib/libc/stdio/
H A Dsetbuf.c45 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
/freebsd-10-stable/crypto/openssl/crypto/evp/
H A Devp_key.c101 char buff[BUFSIZ];
110 (len >= BUFSIZ) ? BUFSIZ - 1 : len);
113 buff, min, (len >= BUFSIZ) ? BUFSIZ - 1 : len,
117 OPENSSL_cleanse(buff, BUFSIZ);
/freebsd-10-stable/usr.bin/vgrind/
H A Dvgrindefs.c34 #define BUFSIZ 1024 macro
75 char ibuf[BUFSIZ];
88 cnt = read(tf, ibuf, BUFSIZ);
103 if (cp >= bp+BUFSIZ) {
133 char tcbuf[BUFSIZ];
161 if (l > BUFSIZ) {
163 q[BUFSIZ - (p-tbuf)] = 0;
165 strlcpy(p, q+1, BUFSIZ - (p - holdtbuf));
/freebsd-10-stable/contrib/xz/src/xz/
H A Dfile_io.h13 // Some systems have suboptimal BUFSIZ. Use a bit bigger value on them.
15 #if BUFSIZ <= 1024
18 # define IO_BUFFER_SIZE (BUFSIZ & ~7U)
/freebsd-10-stable/usr.sbin/route6d/misc/
H A Dcksum.c34 unsigned short buf[BUFSIZ];
/freebsd-10-stable/crypto/openssl/crypto/rc4/
H A Drc4.c79 char buf[BUFSIZ];
145 i = EVP_read_pw_string(buf, BUFSIZ, "Enter RC4 password:", 0);
147 OPENSSL_cleanse(buf, BUFSIZ);
160 i = fread(buf, 1, BUFSIZ, in);
/freebsd-10-stable/contrib/ntp/libntp/
H A Dfindconfig.c19 static char result[BUFSIZ];
20 char hostname[BUFSIZ], *cp;
30 if (gethostname(hostname, BUFSIZ) >= 0) {
/freebsd-10-stable/contrib/xz/src/xzdec/
H A Dxzdec.c164 uint8_t in_buf[BUFSIZ];
165 uint8_t out_buf[BUFSIZ];
169 strm->avail_out = BUFSIZ;
176 strm->avail_in = fread(in_buf, 1, BUFSIZ, file);
201 const size_t write_size = BUFSIZ - strm->avail_out;
214 strm->avail_out = BUFSIZ;
/freebsd-10-stable/contrib/telnet/telnetd/
H A Dext.h70 extern char ptyobuf[BUFSIZ+NETSLOP], *pfrontp, *pbackp;
72 extern char netibuf[BUFSIZ], *netip;
74 extern char netobuf[BUFSIZ], *nfrontp, *nbackp;
H A Dauthenc.c52 if (nfrontp + len < netobuf + BUFSIZ) {
/freebsd-10-stable/sys/contrib/xz-embedded/userspace/
H A Dxzminidec.c22 static uint8_t in[BUFSIZ];
23 static uint8_t out[BUFSIZ];
56 b.out_size = BUFSIZ;
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c105 char shareline[BUFSIZ], unshareline[BUFSIZ];
/freebsd-10-stable/contrib/telnet/libtelnet/
H A Dread_password.c88 char key_string[BUFSIZ];
90 if (max > BUFSIZ) {
/freebsd-10-stable/usr.sbin/eeprom/
H A Deeprom.c64 char line[BUFSIZ];
95 while (fgets(line, BUFSIZ, stdin) != NULL &&
/freebsd-10-stable/usr.sbin/rtadvd/
H A Dadvcap.c50 #ifndef BUFSIZ
51 #define BUFSIZ 1024 macro
112 char ibuf[BUFSIZ];
137 cnt = read(tf, ibuf, BUFSIZ);
152 if (cp >= bp + BUFSIZ) {
183 char tcbuf[BUFSIZ];
212 if (l > BUFSIZ) {
214 q[BUFSIZ - (p-holdtbuf)] = 0;
/freebsd-10-stable/contrib/ntp/lib/isc/tests/
H A Dsocket_test.c89 char sendbuf[BUFSIZ], recvbuf[BUFSIZ];
132 r.length = BUFSIZ;
160 char sendbuf[BUFSIZ], recvbuf[BUFSIZ];
218 r.length = BUFSIZ;
228 r.length = BUFSIZ;

Completed in 258 milliseconds

1234567891011>>