Lines Matching full:file
5 * you may not use this file except in compliance with the License.
36 FILE* file = NULL;
37 file = fopen(filePath.string(), "r");
40 if (NULL != file) {
41 int fd = fileno(file);
52 fclose(file);
58 FILE* file = NULL;
59 file = fopen(filePath.string(), "r");
62 if (NULL != file) {
63 int fd = fileno(file);
73 fclose(file);
79 FILE* file = NULL;
80 file = fopen(filePath.string(), "w+");
82 if (NULL != file) {
83 int fd = fileno(file);
91 fclose(file);
96 FILE* file = NULL;
97 file = fopen(filePath.string(), "a+");
99 if (NULL != file) {
100 int fd = fileno(file);
106 fclose(file);