Searched refs:curl_easy_escape (Results 1 – 25 of 28) sorted by relevance
12
/curl/tests/libtest/ |
H A D | lib543.c | 49 char *s = curl_easy_escape(easy, (const char *)a, asize); in test() 56 s = curl_easy_escape(easy, "", 0); in test() 61 s = curl_easy_escape(easy, " 123", 3); in test()
|
H A D | lib1537.c | 46 ptr = curl_easy_escape(NULL, (char *)a, asize); in test() 78 ptr = curl_easy_escape(NULL, (char *)a, -1); in test()
|
H A D | lib558.c | 47 ptr = curl_easy_escape(NULL, (char *)a, asize); in test()
|
H A D | lib509.c | 103 str = curl_easy_escape(curl, (char *)a, asize); /* uses realloc() */ in test()
|
/curl/docs/libcurl/ |
H A D | curl_easy_escape.md | 4 Title: curl_easy_escape 18 curl_easy_escape - URL encode a string 25 char *curl_easy_escape(CURL *curl, const char *string, int length); 35 If *length* is set to 0 (zero), curl_easy_escape(3) uses strlen() on the input 44 encodings. curl_easy_escape(3) encodes the data byte-by-byte into the 49 The caller of curl_easy_escape(3) must make sure that the data passed in 56 entire URL string with curl_easy_escape(3), because it then also converts 72 char *output = curl_easy_escape(curl, "data to convert", 15);
|
H A D | curl_escape.md | 29 Obsolete function. Use curl_easy_escape(3) instead. 58 Since 7.15.4, curl_easy_escape(3) should be used. This function might be
|
H A D | Makefile.inc | 30 curl_easy_escape.3 \
|
H A D | curl_free.md | 8 - curl_easy_escape (3)
|
H A D | curl_unescape.md | 9 - curl_easy_escape (3)
|
H A D | curl_easy_unescape.md | 8 - curl_easy_escape (3)
|
H A D | curl_getdate.md | 10 - curl_easy_escape (3)
|
/curl/tests/data/ |
H A D | test1396 | 5 curl_easy_escape 20 curl_easy_escape and curl_easy_unescape
|
H A D | test543 | 4 curl_easy_escape 18 curl_easy_escape
|
H A D | test1135 | 50 curl_easy_escape
|
/curl/tests/unit/ |
H A D | unit1605.c | 53 esc = curl_easy_escape(easy, "", -1);
|
H A D | unit1396.c | 104 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
|
/curl/lib/ |
H A D | escape.c | 46 return curl_easy_escape(NULL, string, inlength); in curl_escape() 58 char *curl_easy_escape(CURL *data, const char *string, in curl_easy_escape() function
|
H A D | libcurl.def | 4 curl_easy_escape
|
H A D | urlapi.c | 1565 allochost = curl_easy_escape(NULL, u->host, 0); in curl_url_get()
|
/curl/src/ |
H A D | tool_operhlp.c | 136 encfile = curl_easy_escape(curl, filep, 0 /* use strlen */); in add_file_name_to_url()
|
H A D | var.c | 148 char *enc = curl_easy_escape(NULL, c, (int)clen); in varfunc()
|
/curl/packages/vms/ |
H A D | gnv_libcurl_symbols.opt | 74 SYMBOL_VECTOR=(curl_easy_escape=PROCEDURE) 75 SYMBOL_VECTOR=(CURL_EASY_ESCAPE/curl_easy_escape=PROCEDURE)
|
H A D | pcsi_gnv_curl_file_list.txt | 74 [gnv.usr.share.man.man3]curl_easy_escape.3
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_POSTFIELDS.md | 48 You can use curl_easy_escape(3) to URL encode your data, if
|
/curl/packages/OS400/ |
H A D | ccsidcurl.c | 302 d = curl_easy_escape(handle, s, 0); in curl_easy_escape_ccsid()
|
Completed in 32 milliseconds
12