Searched defs:OutputFileName (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenCrc32/
H A DGenCrc32.c129 CHAR8 *OutputFileName; local
145 OutputFileName = NULL;
183 OutputFileName = argv[1];
270 if (OutputFileName == NULL) {
274 VerboseMsg ("Output file name is %s", OutputFileName);
303 OutFile = fopen (OutputFileName, "wb");
305 Error (NULL, 0, 0001, "Error opening file", OutputFileName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiLdrImage/
H A DEfiLdrImage.c181 CHAR8* OutputFileName = NULL; local
211 OutputFileName = argv[1];
212 if (OutputFileName == NULL) {
268 if (OutputFileName == NULL) {
273 fpOut = fopen(OutputFileName, "w+b");
275 Error (NULL, 0, 0001, "Could not open output file", OutputFileName);
324 printf ("Created %s\n", OutputFileName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DCommonLib.c260 IN CHAR8 *OutputFileName,
272 OutputFileName The name of the file to write.
291 if (OutputFileName == NULL || strlen (OutputFileName) == 0 || OutputFileImage == NULL) {
300 OutputFile = fopen (OutputFileName, "wb");
302 Error (NULL, 0, 0001, "Error opening the output file", OutputFileName);
311 Error (NULL, 0, 0002, "Error writing the output file", OutputFileName);
259 PutFileImage( IN CHAR8 *OutputFileName, IN CHAR8 *OutputFileImage, IN UINT32 BytesToWrite ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFfs/
H A DGenFfs.c448 CHAR8 *OutputFileName; local
470 OutputFileName = NULL;
527 OutputFileName = argv[1];
732 VerboseMsg ("Output file name is %s", OutputFileName);
874 remove(OutputFileName);
875 FfsFile = fopen (OutputFileName, "wb");
877 Error (NULL, 0, 0001, "Error opening file", OutputFileName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenSec/
H A DGenSec.c920 CHAR8 *OutputFileName; local
942 OutputFileName = NULL;
998 OutputFileName = argv[1];
999 if (OutputFileName == NULL) {
1317 if (OutputFileName == NULL) {
1322 VerboseMsg ("Output file name is %s", OutputFileName);
1472 OutFile = fopen (OutputFileName, "wb");
1474 Error (NULL, 0, 0001, "Error opening file for writing", OutputFileName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1743 char *OutputFileName; local
1764 OutputFileName = NULL;
1850 OutputFileName = argv[1];
1922 if (OutputFileName != NULL) {
1923 OutputFile = fopen (OutputFileName, "wb");
1925 Error (NULL, 0, 0001, "Error opening output file for writing", OutputFileName);
1932 OutputFileName = DEFAULT_OUTPUT_FILE;
1933 OutputFile = fopen (OutputFileName, "wb");

Completed in 54 milliseconds