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

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/des/
H A Dread2pwd.c119 char buf[BUFSIZ],buff[BUFSIZ];
121 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
123 OPENSSL_cleanse(buf,BUFSIZ);
124 OPENSSL_cleanse(buff,BUFSIZ);
132 char buf[BUFSIZ],buff[BUFSIZ];
134 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
136 OPENSSL_cleanse(buf,BUFSIZ);
137 OPENSSL_cleanse(buff,BUFSIZ);
[all...]
H A Dread_pwd.c219 char buff[BUFSIZ];
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
223 OPENSSL_cleanse(buff,BUFSIZ);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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...]
H A Dread_pwd.c219 char buff[BUFSIZ];
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
223 OPENSSL_cleanse(buff,BUFSIZ);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dcopyfd.c12 #if BUFSIZ < 4096
13 #undef BUFSIZ macro
14 #define BUFSIZ 4096 macro
23 char buffer[BUFSIZ];
29 size = BUFSIZ;
36 rd = safe_read(src_fd, buffer, size > BUFSIZ ? BUFSIZ : size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/zebra/
H A Dipforward_ews.c29 char buf[BUFSIZ];
H A Dredistribute.c362 char buf[BUFSIZ];
369 inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
388 char buf[BUFSIZ];
395 inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rc4/
H A Drc4.c78 char buf[BUFSIZ];
155 i=EVP_read_pw_string(buf,BUFSIZ,"Enter RC4 password:",0);
158 OPENSSL_cleanse(buf,BUFSIZ);
171 i=fread(buf,1,BUFSIZ,in);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Drealpath.c20 #if PATH_MAX > (BUFSIZ+1)
H A Dcksum.c31 while ((bytes_read = fread(read_buf, 1, BUFSIZ, fp)) > 0) {
H A Dtail.c146 tailbufsize = BUFSIZ;
151 tailbufsize = count + BUFSIZ;
235 if (tailbufsize < taillen + BUFSIZ) {
236 tailbufsize = taillen + BUFSIZ;
251 buf = xrealloc(tailbuf, BUFSIZ);
H A Dsum.c40 size_t bytes_read = safe_read(fd, buf, BUFSIZ);
H A Dtee.c65 while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dprintcap.c60 #ifndef BUFSIZ
61 #define BUFSIZ 1024 macro
62 #endif /* ! BUFSIZ */
140 if (bp >= tbuf+BUFSIZ) {
176 char ibuf[BUFSIZ];
216 cnt = read(tf, ibuf, BUFSIZ);
239 if (cp >= bp+BUFSIZ) {
271 char tcbuf[BUFSIZ];
299 if (l > BUFSIZ) {
301 q[BUFSIZ
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dprintcap.c60 #ifndef BUFSIZ
61 #define BUFSIZ 1024 macro
62 #endif /* ! BUFSIZ */
140 if (bp >= tbuf+BUFSIZ) {
176 char ibuf[BUFSIZ];
216 cnt = read(tf, ibuf, BUFSIZ);
239 if (cp >= bp+BUFSIZ) {
271 char tcbuf[BUFSIZ];
299 if (l > BUFSIZ) {
301 q[BUFSIZ
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/examples/
H A Delements.c46 char buf[BUFSIZ];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/win32/wince/
H A Dwincecompat.h28 #define BUFSIZ 4096 macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dif.c318 static char logbuf[BUFSIZ];
324 strlcat (logbuf, ",", BUFSIZ); \
327 strlcat (logbuf, STR, BUFSIZ); \
330 strlcpy (logbuf, " <", BUFSIZ);
348 strlcat (logbuf, ">", BUFSIZ);
513 char logbuf[BUFSIZ];
514 char buf[BUFSIZ];
519 snprintf (logbuf, BUFSIZ, "%s interface %s %s %s/%d ",
521 inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
527 strncat (logbuf, inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/sysklogd/
H A Dklogd.c35 #define KLOGD_LOGBUF_SIZE BUFSIZ
H A Dlogger.c110 while (fgets(strbuf, BUFSIZ, stdin)) {

Completed in 213 milliseconds

12345