Home
last modified time | relevance | path

Searched refs:bufcoded (Results 1 – 5 of 5) sorted by relevance

/mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/
DHTUU.c73 char *bufcoded) in HTUU_encode() argument
78 register char *outptr = bufcoded; in HTUU_encode()
104 return (int) (outptr - bufcoded); in HTUU_encode()
126 int HTUU_decode(char *bufcoded, in HTUU_decode() argument
176 while (*bufcoded == ' ' || *bufcoded == '\t') in HTUU_decode()
177 bufcoded++; in HTUU_decode()
183 bufin = bufcoded; in HTUU_decode()
185 nprbytes = (int) (bufin - bufcoded - 1); in HTUU_decode()
191 bufin = bufcoded; in HTUU_decode()
DHTUU.h27 char *bufcoded);
29 extern int HTUU_decode(char *bufcoded,
/mirbsd/src/usr.sbin/httpd/src/ap/
Dap_base64.c96 ap_base64decode_len(const char *bufcoded) in ap_base64decode_len() argument
102 bufin = (const unsigned char *) bufcoded; in ap_base64decode_len()
105 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in ap_base64decode_len()
112 ap_base64decode(char *bufplain, const char *bufcoded) in ap_base64decode() argument
116 len = ap_base64decode_binary((unsigned char *) bufplain, bufcoded); in ap_base64decode()
125 ap_base64decode_binary(unsigned char *bufplain, const char *bufcoded) in ap_base64decode_binary() argument
131 bufin = (const unsigned char *) bufcoded; in ap_base64decode_binary()
133 nprbytes = (bufin - (const unsigned char *) bufcoded) - 1; in ap_base64decode_binary()
137 bufin = (const unsigned char *) bufcoded; in ap_base64decode_binary()
/mirbsd/src/usr.sbin/httpd/src/main/
Dutil.c1995 API_EXPORT(char *) ap_pbase64decode(pool *p, const char *bufcoded) in ap_pbase64decode() argument
2000 decoded = (char *) ap_palloc(p, 1 + ap_base64decode_len(bufcoded)); in ap_pbase64decode()
2001 l = ap_base64decode(decoded, bufcoded); in ap_pbase64decode()
2021 API_EXPORT(char *) ap_uudecode(pool *p, const char *bufcoded) in ap_uudecode() argument
2023 return ap_pbase64decode(p, bufcoded); in ap_uudecode()
/mirbsd/src/usr.sbin/httpd/src/include/
Dhttpd.h1039 API_EXPORT(char *) ap_pbase64decode(pool *p, const char *bufcoded);
1041 API_EXPORT(char *) ap_uudecode(pool *p, const char *bufcoded);