Searched defs:OutFileName (Results 1 - 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEfiCompress.c45 CONST CHAR16 *OutFileName; local
49 OutFileName = NULL;
90 OutFileName = ShellCommandLineGetRawValue(Package, 2);
99 if (ShellIsDirectory(OutFileName) == EFI_SUCCESS){
100 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_NOT_DIR), gShellDebug1HiiHandle, L"eficompress", OutFileName);
109 Status = ShellOpenFileByName(OutFileName, &OutShellFileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, 0);
137 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_WRITE_FAIL), gShellDebug1HiiHandle, L"eficompress", OutFileName);
H A DEfiDecompress.c45 CONST CHAR16 *OutFileName; local
53 OutFileName = NULL;
95 OutFileName = ShellCommandLineGetRawValue(Package, 2);
104 if (ShellIsDirectory(OutFileName) == EFI_SUCCESS){
105 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_NOT_DIR), gShellDebug1HiiHandle, L"efidecompress", OutFileName);
134 Status = ShellOpenFileByName(OutFileName, &OutFileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, 0);
155 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_WRITE_FAIL), gShellDebug1HiiHandle, L"efidecompress", OutFileName, Status);
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFv/
H A DGenFv.c193 CHAR8 *OutFileName; local
204 OutFileName = NULL;
278 OutFileName = argv[1];
279 if (OutFileName == NULL) {
572 if (!DumpCapsule && OutFileName == NULL) {
576 if (OutFileName != NULL) {
577 VerboseMsg ("the output file name is %s", OutFileName);
596 if (OutFileName == NULL) {
599 FpFile = fopen (LongFilePath (OutFileName), "w");
601 Error (NULL, 0, 0001, "Error opening file", OutFileName);
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
H A DEfiRom.h81 CHAR8 OutFileName[MAX_PATH]; member in struct:__anon3429
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiCompress/
H A DEfiCompressMain.c40 CHAR8 *OutFileName; member in struct:_COMPRESS_ACTION_LIST
92 CHAR8 *OutFileName,
99 Compress InFileName to OutFileName using algorithm specified by CompressType.
104 OutFileName - Output file compress to
153 ActionList->OutFileName,
227 // Assignment to InFileName and OutFileName in order
232 (*Action)->OutFileName = *argv;
244 fprintf (stdout, " ERROR: Compress OutFileName not specified with InFileName: %s!\n", (*Action)->InFileName);
258 CHAR8 *OutFileName,
274 fprintf (stdout, "%s --> %s\n", InFileName, OutFileName);
256 ProcessFile( CHAR8 *InFileName, CHAR8 *OutFileName, COMPRESS_TYPE CompressType ) argument
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenTEImage/
H A DGenTEImage.c48 INT8 OutFileName[MAX_PATH]; member in struct:__anon5031
114 INT8 *OutFileName
180 if (!mOptions.OutFileName[0]) {
181 strcpy (mOptions.OutFileName, mOptions.InFileName);
186 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1;
187 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\');
195 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName);
203 if (_stricmp (mOptions.OutFileName, mOption
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiRom/
H A DEfiRom.c96 INT8 OutFileName[MAX_PATH]; member in struct:__anon5021
264 if (!mOptions.OutFileName[0]) {
265 strcpy (mOptions.OutFileName, mOptions.FileList->FileName);
270 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1;
271 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\');
279 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName);
288 if (_stricmp (mOptions.OutFileName, FList->FileName) == 0) {
294 mOptions.OutFileName
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
H A DHiiPack.c1312 CHAR8 OutFileName[MAX_PATH]; local
1428 OutFileName,
1436 OutFileName,
1449 OutFileName
1453 if ((OutFptr = fopen (OutFileName, "wb")) == NULL) {
1454 Error (NULL, 0, 0, OutFileName, "failed to open output file for writing", NULL);
1459 Error (NULL, 0, 0, OutFileName, "failed to write defaults to output file");
1473 OutFileName,
1481 OutFileName,
1493 OutFileName
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
H A DMakeDeps.c135 INT8 *OutFileName; // -o option member in struct:__anon5043
320 if (mGlobals.OutFileName != NULL) {
332 remove (mGlobals.OutFileName);
333 rename (mGlobals.TmpFileName, mGlobals.OutFileName);
1337 mGlobals.OutFileName = Argv[1];
1343 sprintf (mGlobals.TmpFileName, "%s2", mGlobals.OutFileName);

Completed in 112 milliseconds