Searched refs:bufcoded (Results 1 – 5 of 5) sorted by relevance
| /mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/ |
| D | HTUU.c | 73 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()
|
| D | HTUU.h | 27 char *bufcoded); 29 extern int HTUU_decode(char *bufcoded,
|
| /mirbsd/src/usr.sbin/httpd/src/ap/ |
| D | ap_base64.c | 96 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/ |
| D | util.c | 1995 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/ |
| D | httpd.h | 1039 API_EXPORT(char *) ap_pbase64decode(pool *p, const char *bufcoded); 1041 API_EXPORT(char *) ap_uudecode(pool *p, const char *bufcoded);
|