Lines Matching refs:real_path
145 char *real_path;
164 result = Curl_urldecode(data->state.up.path, 0, &real_path,
184 actual_path = real_path;
198 Curl_safefree(real_path);
205 if(memchr(real_path, 0, real_path_len)) {
207 Curl_safefree(real_path);
220 file->path = real_path;
222 if(real_path[0] == '/') {
224 if(strchr(real_path + 1, ':')) {
226 fd = open_readonly(real_path + 1, O_RDONLY);
231 fd = open_readonly(real_path, O_RDONLY);
235 fd = open_readonly(real_path, O_RDONLY);
236 file->path = real_path;
240 file->freepath = real_path; /* free this when done */