Searched refs:OutputFileName (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
H A DFileName.c433 the trimmed filename is stored in OutputFileName
436 @param OutputFileName - The output file name.
445 OUT CHAR16 *OutputFileName
457 TempNamePointer = OutputFileName;
464 while (TempNamePointer > OutputFileName) {
481 if (TempNamePointer - OutputFileName > EFI_FILE_STRING_LENGTH) {
488 if (*OutputFileName < 0x20 ||
489 *OutputFileName == '\"' ||
490 *OutputFileName == '*' ||
491 *OutputFileName
[all...]
H A DFat.h1947 the trimmed filename is stored in OutputFileName
1950 @param OutputFileName - The output file name.
1959 OUT CHAR16 *OutputFileName
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DVtf.py185 OutputFileName = ''
191 OutputFileName = 'Vtf%d.raw' % Index
192 OutputFileName = os.path.join(GenFdsGlobalVariable.FvDir, OutputFileName)
193 Arg += ('-o', OutputFileName)
194 FvVtfDict[FvObj.upper()] = OutputFileName
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenAprioriFile/
H A DGenAprioriFile.c50 INT8 *OutputFileName; member in struct:__anon5296
139 if ((BinFptr = fopen (mGlobals.OutputFileName, "rb")) == NULL) {
235 if ((BinFptr = fopen (mGlobals.OutputFileName, "wb")) == NULL) {
236 Error (NULL, 0, 0, mGlobals.OutputFileName, "could not open input file");
259 Error (NULL, 0, 0, mGlobals.OutputFileName, "failed to write GUID to output file");
269 Error (NULL, 0, 0, mGlobals.OutputFileName, "failed to write NULL termination GUID to output file");
387 // -o OutputFileName
391 mGlobals.OutputFileName = Argv[1];
421 if (mGlobals.OutputFileName == NULL) {
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
H A DStringDB.h89 INT8 *OutputFileName,
138 INT8 *OutputFileName,
H A DStringDB.c1719 OutputFileName - name of the file to dump the database contents to
1736 INT8 *OutputFileName,
1757 WOutputFileName = AsciiToWchar (OutputFileName);
1761 Error (NULL, 0, 0, OutputFileName, "failed to open output file for writing");
1734 StringDBDumpDatabase( INT8 *DBFileName, INT8 *OutputFileName, BOOLEAN Verbose ) argument
/device/linaro/bootloader/edk2/BaseTools/Source/C/EfiLdrImage/
H A DEfiLdrImage.c173 CHAR8* OutputFileName = NULL; local
203 OutputFileName = argv[1];
204 if (OutputFileName == NULL) {
260 if (OutputFileName == NULL) {
265 fpOut = fopen (LongFilePath (OutputFileName), "w+b");
267 Error (NULL, 0, 0001, "Could not open output file", OutputFileName);
316 printf ("Created %s\n", OutputFileName);
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenCrc32/
H A DGenCrc32.c129 CHAR8 *OutputFileName; local
145 OutputFileName = NULL;
182 OutputFileName = argv[1];
269 if (OutputFileName == NULL) {
273 VerboseMsg ("Output file name is %s", OutputFileName);
303 OutFile = fopen (LongFilePath (OutputFileName), "wb");
305 Error (NULL, 0, 0001, "Error opening file", OutputFileName);
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiHiiPack/
H A DHiiPack.c105 char *OutputFileName,
113 char *OutputFileName,
184 char *OutputFileName,
197 OutputFileName - name of output HII resource script file to create
231 if ((OutFptr = fopen (OutputFileName, "w")) == NULL) {
232 Error (NULL, 0, 0, OutputFileName, "failed to open output file for writing");
311 char *OutputFileName,
324 OutputFileName - name of output HII package list file to create
339 if (OutputFileName == NULL || PackageListGuid == NULL || PackageFiles == NULL) {
346 if ((OutFptr = fopen (OutputFileName, "w
183 CreateResourceScript( char *OutputFileName, EFI_GUID *PackageListGuid, FILE_NAME_LIST *PackageFiles ) argument
310 CreatePackageList( char *OutputFileName, EFI_GUID *PackageListGuid, FILE_NAME_LIST *PackageFiles ) argument
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
H A DPkcs7Sign.py137 args.OutputFileName = args.OutputFile
214 args.OutputFile = open(args.OutputFileName, 'wb')
270 open(args.OutputFileName, 'wb').write(FullInputFileBuffer)
275 Process = subprocess.Popen('%s smime -verify -inform DER -content %s -CAfile %s' % (OpenSslCommand, args.OutputFileName, args.TrustedPublicCertFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
279 os.remove (args.OutputFileName)
282 open(args.OutputFileName, 'wb').write(args.InputFileBuffer)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
H A DRsa2048Sha256Sign.py120 args.OutputFileName = args.OutputFile
185 args.OutputFile = open(args.OutputFileName, 'wb')
221 open(args.OutputFileName, 'wb').write(Header.Signature)
226 Process = subprocess.Popen('%s sha256 -prverify "%s" -signature %s' % (OpenSslCommand, args.PrivateKeyFileName, args.OutputFileName), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
230 os.remove (args.OutputFileName)
236 open(args.OutputFileName, 'wb').write(args.InputFileBuffer)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
H A DGenCRC32Section.c230 CHAR8 *OutputFileName; local
237 OutputFileName = NULL;
274 OutputFileName = argv[Index + 1];
278 OutputFile = fopen (OutputFileName, "wb");
280 Error (NULL, 0, 0, OutputFileName, "failed to open output binary file");
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DCommonLib.c258 IN CHAR8 *OutputFileName,
270 OutputFileName The name of the file to write.
289 if (OutputFileName == NULL || strlen (OutputFileName) == 0 || OutputFileImage == NULL) {
298 OutputFile = fopen (LongFilePath (OutputFileName), "wb");
300 Error (NULL, 0, 0001, "Error opening the output file", OutputFileName);
309 Error (NULL, 0, 0002, "Error writing the output file", OutputFileName);
257 PutFileImage( IN CHAR8 *OutputFileName, IN CHAR8 *OutputFileImage, IN UINT32 BytesToWrite ) argument
H A DCommonLib.h78 IN CHAR8 *OutputFileName,
91 OutputFileName The name of the file to write.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
H A DHiiPack.c85 CHAR8 OutputFileName[MAX_PATH]; // Output dump file member in struct:__anon5311
113 char *OutputFileName
208 char *OutputFileName,
228 char *OutputFileName,
275 fprintf (stdout, "Dumping HII export file %s => %s\n", mGlobals.HiiExportFileNames, mGlobals.OutputFileName);
278 DumpHiiExportFile (mGlobals.HiiExportFileNames->FileName, mGlobals.OutputFileName);
280 CreateHiiExport (mGlobals.OutputFileName, &mGlobals.Guid, mGlobals.PackFileNames, mGlobals.MfgFlag);
282 MergeHiiExports (mGlobals.HiiExportFileNames, mGlobals.OutputFileName, mGlobals.MfgFlag, mGlobals.NoEmptyVarPacks);
299 char *OutputFileName,
314 OutputFileName
297 MergeHiiExports( FILE_NAME_LIST *HiiExportFiles, char *OutputFileName, int MfgDefaults, int NoEmptyVarPacks ) argument
631 CreateHiiExport( char *OutputFileName, EFI_GUID *DummyFormsetGuid, FILE_NAME_LIST *PackFiles, int MfgDefaults ) argument
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFfs/
H A DGenFfs.c478 CHAR8 *OutputFileName; local
501 OutputFileName = NULL;
558 OutputFileName = argv[1];
763 VerboseMsg ("Output file name is %s", OutputFileName);
923 if (OutputFileName != NULL) {
924 remove(OutputFileName);
925 FfsFile = fopen (LongFilePath (OutputFileName), "wb");
927 Error (NULL, 0, 0001, "Error opening file", OutputFileName);
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
H A DStringDB.h195 INT8 *OutputFileName,
225 INT8 *OutputFileName,
H A DStringDB.c1203 OutputFileName - name of the file to dump the database contents to
1220 INT8 *OutputFileName,
1241 WOutputFileName = AsciiToWchar (OutputFileName);
1245 Error (NULL, 0, 0, OutputFileName, "failed to open output file for writing");
1218 StringDBDumpDatabase( INT8 *DBFileName, INT8 *OutputFileName, BOOLEAN Verbose ) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/
H A DGenSection.c708 char *OutputFileName; local
721 OutputFileName = PARAMETER_NOT_SPECIFIED;
796 OutputFileName = argv[Index];
922 OutFile = fopen (OutputFileName, "wb");
924 Error (NULL, 0, 0, OutputFileName, "failed to open output file for writing");
1012 remove (OutputFileName);
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
H A DGenFfsFile.c895 CHAR8 *OutputFileName; local
915 OutputFileName = NULL;
1018 OutputFileName = (CHAR8 *) malloc (_MAX_PATH);
1019 if (OutputFileName == NULL) {
1023 ZeroMem (OutputFileName, sizeof (_MAX_PATH));
1025 strcpy (OutputFileName, Buffer);
1079 *PtrOutputFileName = OutputFileName;
1130 CHAR8 *OutputFileName; local
1143 OutputFileName = NULL;
1260 &OutputFileName,
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenSec/
H A DGenSec.c1011 CHAR8 *OutputFileName; local
1034 OutputFileName = NULL;
1090 OutputFileName = argv[1];
1091 if (OutputFileName == NULL) {
1411 if (OutputFileName == NULL) {
1416 VerboseMsg ("Output file name is %s", OutputFileName);
1570 OutFile = fopen (LongFilePath (OutputFileName), "wb");
1572 Error (NULL, 0, 0001, "Error opening file for writing", OutputFileName);
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1745 char *OutputFileName; local
1766 OutputFileName = NULL;
1854 OutputFileName = argv[1];
1926 if (OutputFileName == NULL) {
1927 OutputFileName = DEFAULT_OUTPUT_FILE;
1929 OutputFile = fopen (LongFilePath (OutputFileName), "wb");
1931 Error (NULL, 0, 0001, "Error opening output file for writing", OutputFileName);

Completed in 168 milliseconds