Lines Matching refs:fh
252 FILE* fh = NULL;
259 fh = fopen (filename.c_str (), "w");
260 if (fh == NULL)
266 actualWritten = fwrite (routesXml, sizeof(char), strlen(routesXml), fh);
268 fclose (fh);
295 FILE* fh = NULL;
301 fh = fopen (filename.c_str (), "r");
302 if (fh == NULL)
310 actual = fread (buffer, sizeof(char), sizeof(buffer), fh);
315 fclose (fh);