Lines Matching refs:fp
43 FILE *fp = NULL; in GetFileContext() local
74 fp = fopen(path, "rb"); in GetFileContext()
75 if (fp == NULL) { in GetFileContext()
80 size_t retFread = fread(contextBuffer, statBuf.st_size, 1, fp); in GetFileContext()
84 (void)fclose(fp); in GetFileContext()
88 (void)fclose(fp); in GetFileContext()
98 FILE *fp = NULL; in ConvertedContextSaveAsFile() local
128 fp = fopen(path, "wb"); in ConvertedContextSaveAsFile()
129 if (fp == NULL) { in ConvertedContextSaveAsFile()
134 if (fwrite(convertedBuffer, contextBufLen, 1, fp) != 1) { in ConvertedContextSaveAsFile()
136 (void)fclose(fp); in ConvertedContextSaveAsFile()
140 (void)fclose(fp); in ConvertedContextSaveAsFile()