Searched refs:Fptr (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiRom/ |
H A D | EfiRom.h | 220 FILE *Fptr,
|
H A D | EfiRom.c | 744 FILE *Fptr, 757 Fptr File pointer to the already-opened PE32 file 774 fseek (Fptr, 0, SEEK_SET); 779 if (fread (&DosHeader, sizeof (DosHeader), 1, Fptr) != 1) { 793 fseek (Fptr, (long) DosHeader.e_lfanew, SEEK_SET); 798 if (fread (&PeHdr, sizeof (PeHdr), 1, Fptr) != 1) { 743 CheckPE32File( FILE *Fptr, UINT16 *MachineType, UINT16 *SubSystem ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/ |
H A D | SimpleFileParsing.c | 58 FILE *Fptr; member in struct:_SOURCE_FILE 653 if ((SourceFile->Fptr = fopen (FoundFileName, "rb")) == NULL) { 664 if (SourceFile->Fptr != NULL) { 665 fclose (SourceFile->Fptr); 666 SourceFile->Fptr = NULL; 698 fseek (SourceFile->Fptr, 0, SEEK_END); 699 SourceFile->FileSize = ftell (SourceFile->Fptr); 704 fseek (SourceFile->Fptr, 0, SEEK_SET); 711 fread ((VOID *) SourceFile->FileBuffer, SourceFile->FileSize, 1, SourceFile->Fptr);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VolInfo/ |
H A D | VolInfo.c | 1686 FILE *Fptr; local 1690 if ((Fptr = fopen (FileName, "r")) == NULL) { 1695 while (fgets (Line, sizeof (Line), Fptr) != NULL) { 1716 fclose (Fptr);
|
Completed in 185 milliseconds