Home | History | Annotate | Download | only in jni

Lines Matching defs:fh

243   FILE* fh = NULL;
250 fh = fopen(filename.c_str(), "w");
251 if (fh == NULL) {
256 actualWritten = fwrite(routesXml, sizeof(char), strlen(routesXml), fh);
258 fclose(fh);
281 FILE* fh = NULL;
287 fh = fopen(filename.c_str(), "r");
288 if (fh == NULL) {
295 actual = fread(buffer, sizeof(char), sizeof(buffer), fh);
299 fclose(fh);