Lines Matching defs: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.
53 /* create/open a local file for writing, return TRUE on success */
58 FILE *file = NULL;
71 /* open file for writing */
72 file = fopen(fname, "wb");
97 while(fd == -1 && /* haven't successfully opened a file */
117 file = fdopen(fd, "wb");
118 if(!file)
123 if(!file) {
124 warnf(global, "Failed to open the file %s: %s", fname,
130 outs->stream = file;
180 /* regular file */
214 "anyway, or consider \"--output <FILE>\" to save to a file.");