Home | History | Annotate | Download | only in lib

Lines Matching refs:unescaped

871     char *unescaped;
877 result = Curl_urldecode(conn->data, dn, 0, &unescaped, NULL, FALSE);
885 /* Convert the unescaped string to a tchar */
886 ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescaped);
888 /* Free the unescaped string as we are done with it */
889 Curl_unicodefree(unescaped);
897 ludp->lud_dn = unescaped;
936 char *unescaped;
942 result = Curl_urldecode(conn->data, attributes[i], 0, &unescaped, NULL,
953 /* Convert the unescaped string to a tchar */
954 ludp->lud_attrs[i] = Curl_convert_UTF8_to_tchar(unescaped);
956 /* Free the unescaped string as we are done with it */
957 Curl_unicodefree(unescaped);
967 ludp->lud_attrs[i] = unescaped;
1006 char *unescaped;
1012 result = Curl_urldecode(conn->data, filter, 0, &unescaped, NULL, FALSE);
1020 /* Convert the unescaped string to a tchar */
1021 ludp->lud_filter = Curl_convert_UTF8_to_tchar(unescaped);
1023 /* Free the unescaped string as we are done with it */
1024 Curl_unicodefree(unescaped);
1032 ludp->lud_filter = unescaped;