Lines Matching refs:fFile
481 FILE *fFile; member in UCharFile
503 fFile = fopen(fName, "rb"); in UCharFile()
505 if (fFile == NULL) { in UCharFile()
514 BOMC1 = fgetc(fFile); in UCharFile()
515 BOMC2 = fgetc(fFile); in UCharFile()
521 else if (BOMC1 == 0xEF && BOMC2 == 0xBB && (BOMC3 = fgetc(fFile)) == 0xBF ) { in UCharFile()
534 fclose(fFile); in ~UCharFile()
545 cL = fgetc(fFile); in get()
546 cH = fgetc(fFile); in get()
557 cH = fgetc(fFile); in get()
558 cL = fgetc(fFile); in get()
574 …int ch = fgetc(fFile); // Note: c and ch are separate cause eof test doesn't work on UChar type. in get()
594 …rr, "not likely utf-8 encoded file %s contains corrupt data at offset %d.\n", fName, ftell(fFile)); in get()
603 bytes[i] = fgetc(fFile); in get()
605 … Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch); in get()