Lines Matching refs:aptr

314   Curl_safefree(data->state.aptr.proxyuserpwd);
315 Curl_safefree(data->state.aptr.uagent);
316 Curl_safefree(data->state.aptr.userpwd);
317 Curl_safefree(data->state.aptr.accept_encoding);
318 Curl_safefree(data->state.aptr.te);
319 Curl_safefree(data->state.aptr.rangeline);
320 Curl_safefree(data->state.aptr.ref);
321 Curl_safefree(data->state.aptr.host);
322 Curl_safefree(data->state.aptr.cookiehost);
323 Curl_safefree(data->state.aptr.rtsp_transport);
324 Curl_safefree(data->state.aptr.user);
325 Curl_safefree(data->state.aptr.passwd);
326 Curl_safefree(data->state.aptr.proxyuser);
327 Curl_safefree(data->state.aptr.proxypasswd);
1397 (data->state.aptr.proxyuser) ? TRUE : FALSE;
1918 result = Curl_setstropt(&data->state.aptr.passwd, decoded);
1939 result = Curl_setstropt(&data->state.aptr.user, decoded);
1943 else if(data->state.aptr.passwd) {
1945 result = Curl_setstropt(&data->state.aptr.user, "");
2277 result = Curl_setstropt(&data->state.aptr.proxyuser, proxyuser);
2290 result = Curl_setstropt(&data->state.aptr.proxypasswd, proxypasswd);
2385 const char *proxyuser = data->state.aptr.proxyuser ?
2386 data->state.aptr.proxyuser : "";
2387 const char *proxypasswd = data->state.aptr.proxypasswd ?
2388 data->state.aptr.proxypasswd : "";
2392 result = Curl_setstropt(&data->state.aptr.proxyuser,
2398 result = Curl_setstropt(&data->state.aptr.proxypasswd,
2753 if(data->state.aptr.user) {
2755 userp = &data->state.aptr.user;
2796 if(data->state.aptr.user != *userp) {
2798 result = Curl_setstropt(&data->state.aptr.user, *userp);
2803 if(data->state.aptr.user) {
2804 uc = curl_url_set(data->state.uh, CURLUPART_USER, data->state.aptr.user,
2809 *userp = strdup(data->state.aptr.user);
2815 CURLcode result = Curl_setstropt(&data->state.aptr.passwd, *passwdp);
2819 if(data->state.aptr.passwd) {
2821 data->state.aptr.passwd, CURLU_URLENCODE);
2825 *passwdp = strdup(data->state.aptr.passwd);
2845 if((conn->handler->flags & PROTOPT_NEEDSPWD) && !data->state.aptr.user)