Lines Matching refs:fp
65 FILE *fp = NULL; in GetFileContext() local
96 fp = fopen(path, "rb"); in GetFileContext()
97 if (fp == NULL) { in GetFileContext()
102 size_t retFread = fread(contextBuffer, statBuf.st_size, 1, fp); in GetFileContext()
106 (void)fclose(fp); in GetFileContext()
110 (void)fclose(fp); in GetFileContext()
121 FILE *fp = NULL; in ConvertedContextSaveAsFile() local
152 fp = fopen(path, "wb"); in ConvertedContextSaveAsFile()
153 if (fp == NULL) { in ConvertedContextSaveAsFile()
158 size_t retFwrite = fwrite(convertedBuffer, bufferLen, 1, fp); in ConvertedContextSaveAsFile()
161 (void)fclose(fp); in ConvertedContextSaveAsFile()
165 (void)fclose(fp); in ConvertedContextSaveAsFile()