Lines Matching defs:copy
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
255 char *copy;
261 copy = malloc(len + 1);
262 if(!copy)
264 memcpy(copy, ptr, len);
265 copy[len] = '\0';
267 p = copy;
286 Curl_safefree(copy);
298 Curl_safefree(copy);
312 if(copy != p)
313 memmove(copy, p, strlen(p) + 1);
318 SANITIZEcode sc = sanitize_file_name(&sanitized, copy, 0);
319 Curl_safefree(copy);
322 copy = sanitized;
335 msnprintf(buffer, sizeof(buffer), "%s/%s", tdir, copy);
336 Curl_safefree(copy);
337 copy = strdup(buffer); /* clone the buffer, we don't use the libcurl
346 return copy;
394 /* Create a NUL-terminated and whitespace-stripped copy of Location: */