Lines Matching refs:FILE
5 * you may not use this file except in compliance with the License.
53 * this file won't actually work in 80x86 small/medium model; at least,
91 * Backing store (temporary file) management.
128 /* Since this implementation uses tmpfile() to create the file,
129 * no explicit file deletion is needed.
133 static FILE* getTempFileFromPath(const char * path) {
134 FILE * fd = fopen(path, "w+");
139 static FILE* getTempFile() {
142 FILE * fd = getTempFileFromPath(path);
144 // anywhere else we can create a temp file?
154 * This version uses tmpfile(), which constructs a suitable file name
156 * indeed, we can't even find out the actual name of the temp file.