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.
79 FILE *file;
84 file = fopen(filename, "wb");
85 if(!file) {
91 curl_easy_setopt(handle, CURLOPT_WRITEDATA, file);
92 curl_easy_setopt(handle, CURLOPT_PRIVATE, file);
104 FILE *file;
117 curl_easy_getinfo(easy_handle, CURLINFO_PRIVATE, &file);
122 if(file) {
123 fclose(file);