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

1234567891011>>

/macosx-10.10.1/OpenSSL098-52/src/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...]
/macosx-10.10.1/Heimdal-398.1.2/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) {
/macosx-10.10.1/OpenSSL098-52/src/crypto/ui/
H A Dui_util.c61 char buff[BUFSIZ];
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
65 OPENSSL_cleanse(buff,BUFSIZ);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dsetbuf.c31 sfsetbuf(f, b, b ? BUFSIZ : 0);
/macosx-10.10.1/Heimdal-398.1.2/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);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/port/
H A Dastcopy.c41 #undef BUFSIZ macro
42 #define BUFSIZ 4096 macro
64 if (n <= 0 || n >= BUFSIZ * 2)
72 if (mapsize >= BUFSIZ * 2 && (mapbuf = (char*)mmap(NiL, mapsize, PROT_READ, MAP_SHARED, rfd, pos)) != ((caddr_t)-1))
80 if (n <= 0) n = BUFSIZ;
85 bufsiz = roundof(n, BUFSIZ);
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dfgetln.c48 bufsiz = BUFSIZ;
58 size_t nbufsiz = bufsiz + BUFSIZ;
71 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL)
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/setkey/
H A Dextern.h21 extern u_char m_buf[BUFSIZ];
/macosx-10.10.1/vim-55/src/po/
H A Dsjiscorr.c14 char buffer[BUFSIZ];
17 while (fgets(buffer, BUFSIZ, stdin) != NULL)
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dsetbuf.c45 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dslapd-mtread.c113 char thrstr[BUFSIZ];
115 snprintf(thrstr, BUFSIZ, "error on tidx: %d: %s", idx, string);
122 char thrstr[BUFSIZ];
124 snprintf(thrstr, BUFSIZ, "tidx: %d says: %s", idx, string);
131 char thrstr[BUFSIZ];
135 snprintf(thrstr, BUFSIZ, "tidx: %d says: %s", idx, string);
178 char outstr[BUFSIZ];
338 snprintf(outstr, BUFSIZ, "MT Test Start: conns: %d (%s)", noconns, uri);
340 snprintf(outstr, BUFSIZ, "Threads: RO: %d RW: %d", threads, rwthreads);
346 snprintf(outstr, BUFSIZ, "Create
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/evp/
H A Devp_key.c94 char buff[BUFSIZ];
100 UI_add_input_string(ui,prompt,0,buf,0,(len>=BUFSIZ)?BUFSIZ-1:len);
103 buff,0,(len>=BUFSIZ)?BUFSIZ-1:len,buf);
106 OPENSSL_cleanse(buff,BUFSIZ);
/macosx-10.10.1/tcl-105/tcl_ext/tls/tls/
H A DtlsX509.c99 char subject[BUFSIZ];
100 char issuer[BUFSIZ];
101 char serial[BUFSIZ];
102 char notBefore[BUFSIZ];
103 char notAfter[BUFSIZ];
119 n = BIO_read(bio, subject, min(BIO_pending(bio), BUFSIZ - 1));
125 n = BIO_read(bio, issuer, min(BIO_pending(bio), BUFSIZ - 1));
131 n = BIO_read(bio, serial, min(BIO_pending(bio), BUFSIZ - 1));
/macosx-10.10.1/CommonCrypto-60061/test/CommonNumerics/
H A DCommonBaseEncoding.c19 #define BUFSIZ 1024
25 char outBuf[BUFSIZ], secondBuf[BUFSIZ];
28 outAvailable = BUFSIZ;
35 outAvailable = BUFSIZ - outLen;
55 secondAvailable = BUFSIZ;
63 secondAvailable = BUFSIZ - secondLen;
127 char outBuf[BUFSIZ], secondBuf[BUFSIZ];
130 outAvailable = BUFSIZ;
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-shell/
H A Dresult.c51 char line[BUFSIZ];
55 buf = (char *) ch_malloc( BUFSIZ );
57 bsize = BUFSIZ;
85 bsize += BUFSIZ;
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc4/
H A Drc4.c79 char buf[BUFSIZ];
156 i=EVP_read_pw_string(buf,BUFSIZ,"Enter RC4 password:",0);
159 OPENSSL_cleanse(buf,BUFSIZ);
172 i=fread(buf,1,BUFSIZ,in);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dsetlinebuf.c30 # define LBUF_BUFSIZE BUFSIZ
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dfgetln.c56 bufsiz = BUFSIZ;
66 size_t nbufsiz = bufsiz + BUFSIZ;
78 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
/macosx-10.10.1/ntp-92/libntp/
H A Dfindconfig.c19 static char result[BUFSIZ];
20 char hostname[BUFSIZ], *cp;
30 if (gethostname(hostname, BUFSIZ) >= 0) {
/macosx-10.10.1/postfix-255/postfix/src/fsstone/
H A Dfsstone.c67 char new_path[BUFSIZ];
68 char old_path[BUFSIZ];
80 char path[BUFSIZ];
108 char path[BUFSIZ];
135 char path[BUFSIZ];
146 char path[BUFSIZ];
/macosx-10.10.1/remote_cmds-47/telnetd.tproj/
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.c49 if (nfrontp + len < netobuf + BUFSIZ) {
/macosx-10.10.1/vim-55/src/
H A Dwsdebug.c91 char buf[BUFSIZ];
149 char buf[BUFSIZ];
151 expand_env((char_u *) file, (char_u *) buf, BUFSIZ);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sock/
H A Dresult.c48 char line[BUFSIZ];
52 buf = (char *) ch_malloc( BUFSIZ );
54 bsize = BUFSIZ;
82 bsize += BUFSIZ;

Completed in 215 milliseconds

1234567891011>>