Lines Matching refs:length
50 char *curl_unescape(const char *string, int length) in curl_unescape() argument
52 return curl_easy_unescape(NULL, string, length, NULL); in curl_unescape()
61 size_t length; in curl_easy_escape() local
68 length = (inlength ? (size_t)inlength : strlen(string)); in curl_easy_escape()
69 if(!length) in curl_easy_escape()
72 Curl_dyn_init(&d, length * 3 + 1); in curl_easy_escape()
74 while(length--) { in curl_easy_escape()
123 CURLcode Curl_urldecode(const char *string, size_t length, in Curl_urldecode() argument
133 alloc = (length ? length : strlen(string)); in Curl_urldecode()
182 int length, int *olen) in curl_easy_unescape() argument
186 if(string && (length >= 0)) { in curl_easy_unescape()
187 size_t inputlen = (size_t)length; in curl_easy_unescape()