Lines Matching refs:file
10 * This software is licensed as described in the file COPYING, which
16 * furnished to do so, under the terms of the COPYING file.
69 FILE *file;
74 file = fopen(filename, "wb");
75 if(!file) {
81 curl_easy_setopt(handle, CURLOPT_WRITEDATA, file);
82 curl_easy_setopt(handle, CURLOPT_PRIVATE, file);
94 FILE *file;
107 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file);
112 if(file) {
113 fclose(file);