Searched refs:pInFile (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrCompiler.cpp508 FILE *pInFile = NULL; local
520 if ((pInFile = fopen (InFileName, "r")) == NULL) {
532 if (VfrParserStart (pInFile, &InputInfo) != 0) {
536 fclose (pInFile);
551 if (pInFile != NULL) {
552 fclose (pInFile);
709 FILE *pInFile = NULL; local
721 if ((pInFile = fopen (InFileName, "r")) == NULL) {
733 while (!feof (pInFile)) {
734 if (fgets (LineBuf, MAX_VFR_LINE_LEN, pInFile) !
[all...]
H A DVfrUtilityLib.cpp3152 FILE *pInFile = NULL; local
3170 if ((pInFile = fopen (mStringFileName, "rb")) == NULL) {
3177 fseek (pInFile, 0, SEEK_END);
3178 Length = ftell (pInFile);
3179 fseek (pInFile, 0, SEEK_SET);
3186 fclose (pInFile);
3189 fread ((char *)StringPtr, sizeof (UINT8), Length, pInFile);
3190 fclose (pInFile);

Completed in 564 milliseconds