Lines Matching refs:fh
252 FILE* fh = NULL;
258 fh = fopen (filename.c_str (), "w");
259 if (fh == NULL)
265 actualWritten = fwrite (routesXml, sizeof(char), strlen(routesXml), fh);
267 fclose (fh);
292 FILE* fh = NULL;
298 fh = fopen (filename.c_str (), "r");
299 if (fh == NULL)
307 actual = fread (buffer, sizeof(char), sizeof(buffer), fh);
312 fclose (fh);