HomeSort by relevance Sort by last modified time
    Searched refs:InputFileName (Results 1 - 25 of 27) sorted by null

1 2

  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.h 118 IN CHAR8 *InputFileName
129 InputFileName The name of the file to check for existence
MemoryFile.h 38 IN CHAR8 *InputFileName,
CommonLib.c 156 IN CHAR8 *InputFileName,
169 InputFileName The name of the file to read.
188 if (InputFileName == NULL || strlen (InputFileName) == 0 || InputFileImage == NULL) {
197 InputFile = fopen (LongFilePath (InputFileName), "rb");
199 Error (NULL, 0, 0001, "Error opening the input file", InputFileName);
206 Error (NULL, 0, 0004, "Error reading the input file", InputFileName);
215 Error (NULL, 0, 0003, "Error parsing the input file", InputFileName);
231 Error (NULL, 0, 0004, "Error reading the input file", InputFileName);
242 Error (NULL, 0, 0004, "Error reading the input file", InputFileName);
    [all...]
MemoryFile.c 38 IN CHAR8 *InputFileName,
65 Status = GetFileImage (InputFileName, &InputFileImage, &BytesRead);
OsPath.c 271 IN CHAR8 *InputFileName
281 InputFileName The name of the file to check for existence
291 InputFile = fopen (LongFilePath (InputFileName), "rb");
CommonLib.h 70 IN CHAR8 *InputFileName,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/
GenSection.c 167 char **InputFileName,
184 InputFileName - Name of the input file.
216 InFile = fopen (InputFileName[0], "rb");
218 Error (NULL, 0, 0, InputFileName[0], "failed to open input file");
239 Error (NULL, 0, 0, InputFileName[0], "file size (0x%X) exceeds section size limit(%dM).", TotalLength, MAX_SECTION_SIZE>>20);
259 Error (NULL, 0, 0, InputFileName[0], "failed to read contents of file");
281 char **InputFileName,
290 Get the contents of all section files specified in InputFileName
295 InputFileName - Name of the input file.
333 InFile = fopen (InputFileName[Index], "rb");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenSec/
GenSec.c 229 CHAR8 **InputFileName,
246 InputFileName - Name of the input file.
279 InFile = fopen (LongFilePath (InputFileName[0]), "rb");
281 Error (NULL, 0, 0001, "Error opening file", InputFileName[0]);
293 DebugMsg (NULL, 0, 9, "Input file", "File name is %s and File size is %u bytes", InputFileName[0], (unsigned) InputFileLength);
299 // Error (NULL, 0, 2000, "Invalid parameter", "%s file size (0x%X) exceeds section size limit(%uM).", InputFileName[0], (unsigned) TotalLength, MAX_SECTION_SIZE>>20);
332 Error (NULL, 0, 0004, "Error reading file", InputFileName[0]);
391 CHAR8 **InputFileName,
401 Get the contents of all section files specified in InputFileName
406 InputFileName - Name of the input file.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
CommonLib.c 157 IN CHAR8 *InputFileName,
170 InputFileName The name of the file to read.
189 if (InputFileName == NULL || strlen (InputFileName) == 0 || InputFileImage == NULL) {
198 InputFile = fopen (InputFileName, "rb");
200 printf ("ERROR: Could not open input file \"%s\".\n", InputFileName);
207 printf ("ERROR: System error reading input file \"%s\".\n", InputFileName);
216 printf ("ERROR: System error parsing input file \"%s\".\n", InputFileName);
232 printf ("ERROR: System error reading input file \"%s\".\n", InputFileName);
243 printf ("ERROR: Reading file \"%s\"%i.\n", InputFileName);
    [all...]
CommonLib.h 65 IN CHAR8 *InputFileName,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFfs/
GenFfs.c 236 IN CHAR8 **InputFileName,
249 Get the contents of all section files specified in InputFileName
254 InputFileName - Name of the input file.
311 InFile = fopen (LongFilePath (InputFileName[Index]), "rb");
313 Error (NULL, 0, 0001, "Error opening file", InputFileName[Index]);
321 "the input section name is %s and the size is %u bytes", InputFileName[Index], (unsigned) FileSize);
428 Error (NULL, 0, 0004, "Error reading file", InputFileName[Index]);
482 CHAR8 **InputFileName;
503 InputFileName = NULL;
628 if ((InputFileNum == 0) && (InputFileName == NULL)) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Split/
Split.c 228 CHAR8 *InputFileName = NULL;
275 InputFileName = argv[1];
276 if (InputFileName == NULL) {
354 if (InputFileName == NULL) {
359 In = fopen (LongFilePath (InputFileName), "rb");
361 // ("Unable to open file \"%s\"\n", InputFileName);
362 Error (InputFileName, 0, 1, "File open failure", NULL);
367 OutName1 = (CHAR8*)malloc(strlen(InputFileName) + 16);
373 strcpy (OutName1, InputFileName);
379 OutName2 = (CHAR8*)malloc(strlen(InputFileName) + 16);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenCrc32/
GenCrc32.c 130 CHAR8 *InputFileName;
144 InputFileName = NULL;
243 InputFileName = argv[0];
262 if (InputFileName == NULL) {
266 VerboseMsg ("Input file name is %s", InputFileName);
279 InFile = fopen (LongFilePath (InputFileName), "rb");
281 Error (NULL, 0, 0001, "Error opening file", InputFileName);
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
FileName.c 435 @param InputFileName - The input file name.
438 @retval TRUE - The InputFileName is a valid long file name.
439 @retval FALSE - The InputFileName is not a valid long file name.
444 IN CHAR16 *InputFileName,
453 while (*InputFileName == L' ') {
454 InputFileName++;
458 while (*InputFileName != 0) {
459 *TempNamePointer++ = *InputFileName++;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/BPDG/
BPDG.py 126 # @Param InputFileName The filename include the vpd type pcd information
133 def StartBpdg(InputFileName, MapFileName, VpdFileName, Force):
140 GenVPD = GenVpd.GenVPD (InputFileName, MapFileName, VpdFileName)
142 EdkLogger.info('%-24s = %s' % ("VPD input data file: ", InputFileName))
GenVpd.py 307 # @Param InputFileName The filename include the vpd type pcd information
313 def __init__(self, InputFileName, MapFileName, VpdFileName):
314 self.InputFileName = InputFileName
321 fInputfile = open(InputFileName, "r", 0)
325 EdkLogger.error("BPDG", BuildToolError.FILE_READ_FAILURE, "File read failed for %s" % InputFileName, None)
329 EdkLogger.error("BPDG", BuildToolError.FILE_OPEN_FAILURE, "File open failed for %s" % InputFileName, None)
397 PCD = PcdEntry(line[0], line[1], line[2], line[3], line[4],line[5], self.InputFileName)
423 EdkLogger.error("BPDG", BuildToolError.FORMAT_INVALID, "Invalid PCD size value %s at file: %s line: %s" % (PCD.PcdSize, self.InputFileName, PCD.Lineno))
440 EdkLogger.warn("BPDG", "The offset value of PCD %s is not 8-byte aligned!" %(PCD.PcdCName), File=self.InputFileName)
    [all...]
  /external/clang/unittests/AST/
ASTImporterTest.cpp 57 const char *const InputFileName = "input.cc";
62 FromCode, FromArgs, InputFileName),
74 MFS->addFile(InputFileName, 0,
  /system/tools/aidl/
options.h 92 std::string InputFileName() const { return input_file_name_; }
options_unittest.cpp 159 EXPECT_EQ(kCompileCommandInput, options->InputFileName());
171 EXPECT_EQ(kCompileCommandInput, options->InputFileName());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
GenFfsFile.c 894 CHAR8 *InputFileName;
914 InputFileName = NULL;
1001 InputFileName = (CHAR8 *) malloc (_MAX_PATH);
1002 if (InputFileName == NULL) {
1006 ZeroMem (InputFileName, sizeof (_MAX_PATH));
1008 strcpy (InputFileName, Buffer);
1078 *PtrInputFileName = InputFileName;
1131 CHAR8 *InputFileName;
1144 InputFileName = NULL;
1259 &InputFileName,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
GenFw.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c 1584 IN char *InputFileName,
1592 Get the contents of file specified in InputFileName
1597 InputFileName - Name of the input file.
1618 InputFile = fopen (LongFilePath (InputFileName), "rb");
1620 Error (NULL, 0, 0001, "Error opening file: %s", InputFileName);
1632 Error (NULL, 0, 0004, "Error reading contents of input file: %s", InputFileName);
    [all...]
TianoCompress.h 94 IN char *InputFileName,
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 126 args.InputFileName = args.InputFile.name
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 109 args.InputFileName = args.InputFile.name

Completed in 410 milliseconds

1 2