Lines Matching defs:unescaped
880 char *unescaped;
886 result = Curl_urldecode(dn, 0, &unescaped, NULL, REJECT_ZERO);
894 /* Convert the unescaped string to a tchar */
895 ludp->lud_dn = curlx_convert_UTF8_to_tchar(unescaped);
897 /* Free the unescaped string as we are done with it */
898 free(unescaped);
906 ludp->lud_dn = unescaped;
945 char *unescaped;
951 result = Curl_urldecode(attributes[i], 0, &unescaped, NULL,
962 /* Convert the unescaped string to a tchar */
963 ludp->lud_attrs[i] = curlx_convert_UTF8_to_tchar(unescaped);
965 /* Free the unescaped string as we are done with it */
966 free(unescaped);
976 ludp->lud_attrs[i] = unescaped;
1015 char *unescaped;
1021 result = Curl_urldecode(filter, 0, &unescaped, NULL, REJECT_ZERO);
1029 /* Convert the unescaped string to a tchar */
1030 ludp->lud_filter = curlx_convert_UTF8_to_tchar(unescaped);
1032 /* Free the unescaped string as we are done with it */
1033 free(unescaped);
1041 ludp->lud_filter = unescaped;