Searched defs:OutputFile (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DCommonLib.c285 FILE *OutputFile; local
300 OutputFile = fopen (OutputFileName, "wb");
301 if (OutputFile == NULL) {
309 BytesWrote = fwrite (OutputFileImage, sizeof (UINT8), BytesToWrite, OutputFile);
312 fclose (OutputFile);
318 fclose (OutputFile);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenPage/
H A DGenPage.c299 CHAR8 *OutputFile = NULL; local
330 OutputFile = argv[1];
425 result = GenBinPage (BaseMemory, InputFile, OutputFile);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/
H A DGnuGenBootSector.c211 FILE *OutputFile; local
238 OutputFile = fopen(OutputInfo->PhysicalPath, "r+");
239 if (OutputFile == NULL) {
240 OutputFile = fopen(OutputInfo->PhysicalPath, "w");
241 if (OutputFile == NULL) {
251 if (0x200 != fread (FirstSectorBackup, 1, 0x200, OutputFile)) {
252 fclose(OutputFile);
258 if(0x200 != fwrite(FirstSector, 1, 0x200, OutputFile)) {
259 fclose(OutputFile);
263 fclose(OutputFile);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1742 FILE *OutputFile; local
1923 OutputFile = fopen (OutputFileName, "wb");
1924 if (OutputFile == NULL) {
1933 OutputFile = fopen (OutputFileName, "wb");
1958 fwrite(OutBuffer,(size_t)DstSize, 1, OutputFile);
1995 fwrite(OutBuffer, (size_t)(Scratch->mOrigSize), 1, OutputFile);

Completed in 63 milliseconds