HomeSort by relevance Sort by last modified time
    Searched refs:OutFptr (Results 1 - 14 of 14) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
GuidList.c 89 FILE *OutFptr,
113 FILE *OutFptr;
120 OutFptr = fopen (OutFileName, "w");
121 if (OutFptr == NULL) {
126 OutFptr = stdout;
130 PrintGuidText (OutFptr, mGuidList[Index].VariableName, mGuidList[Index].DefineName, &mGuidList[Index].Guid);
136 fclose (OutFptr);
144 FILE *OutFptr,
157 OutFptr - file pointer to which to write the output
167 if (OutFptr == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiHiiPack/
HiiPack.c 96 FILE *OutFptr,
212 FILE *OutFptr;
225 OutFptr = NULL;
231 if ((OutFptr = fopen (OutputFileName, "w")) == NULL) {
240 fprintf (OutFptr, "%s\n", gRcFileHeader[Index]);
246 fprintf (OutFptr, "\n");
247 fprintf (OutFptr, "%d %s\n", HII_RESOURCE_NAME, HII_RESOURCE_TYPE);
248 fprintf (OutFptr, "{\n");
291 DumpRawBytes (OutFptr, PackageList, PackageListLen, 2);
296 fprintf (OutFptr, "}\n");
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
HiiPack.c 119 FILE *OutFptr,
128 FILE *OutFptr,
137 FILE *OutFptr,
147 FILE *OutFptr,
155 FILE *OutFptr,
165 FILE *OutFptr,
326 FILE *OutFptr;
353 OutFptr = NULL;
483 if ((OutFptr = fopen (OutputFileName, "wb")) == NULL) {
491 if (fwrite ((void *) &TempHiiExportTableHeader, sizeof (EFI_HII_EXPORT_TABLE), 1, OutFptr) != 1) {
    [all...]
IfrParse.h 53 FILE *OutFptr;
177 FILE *OutFptr
189 OutFptr - GC_TODO: add argument description
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
VfrServices.cpp 199 FILE *OutFptr;
334 if ((OutFptr = fopen (gOptions.VfrListFileName, "w")) == NULL) {
353 fprintf (OutFptr, "//\n// VFR compiler version " UTILITY_VERSION "\n//\n");
365 fprintf (OutFptr, "%s", Line);
378 fprintf (OutFptr, ">%08X: ", ByteCount);
383 fprintf (OutFptr, "%02X ", (UINT32)Curr->OpcodeByte);
387 fprintf (OutFptr, "\n");
396 fprintf (OutFptr, "%s", Line);
399 fclose (OutFptr);
730 FILE *OutFptr
    [all...]
EfiVfr.h 161 FILE *OutFptr
170 OutFptr - file to write the header to
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
EfiRom.h 239 FILE *OutFptr,
253 OutFptr - file pointer to output binary ROM image file we're creating
269 FILE *OutFptr,
281 OutFptr - file pointer to output binary ROM image file we're creating
EfiRom.c 200 FILE *OutFptr,
212 OutFptr - file pointer to output binary ROM image file we're creating
372 if (fwrite (Buffer, FileSize, 1, OutFptr) != 1) {
383 putc (~0, OutFptr);
408 FILE *OutFptr,
422 OutFptr - file pointer to output binary ROM image file we're creating
666 if (fwrite (&RomHdr, sizeof (RomHdr), 1, OutFptr) != 1) {
676 if (putc (0, OutFptr) == EOF) {
688 if (fwrite (&PciDs23, sizeof (PciDs23), 1, OutFptr) != 1) {
694 if (fwrite (&PciDs30, sizeof (PciDs30), 1, OutFptr) != 1) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenTEImage/
GenTEImage.c 242 FILE *OutFptr;
256 OutFptr = NULL;
465 if ((OutFptr = fopen (OutFileName, "wb")) == NULL) {
472 if (fwrite (&TEImageHeader, sizeof (EFI_TE_IMAGE_HEADER), 1, OutFptr) != 1) {
492 if (fwrite (Buffer, FileSize - BytesStripped, 1, OutFptr) != 1) {
507 if (OutFptr != NULL) {
508 fclose (OutFptr);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StringDB.c 169 FILE *OutFptr
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.c 68 FILE *OutFptr
803 FILE *OutFptr
808 fprintf (OutFptr, "%s\n", mSourceFileHeader[TempIndex]);
1227 FILE *OutFptr;
1242 OutFptr = _wfopen (WOutputFileName, L"wb");
1244 if (OutFptr == NULL) {
1250 fwrite (&WChar, sizeof (WCHAR), 1, OutFptr);
    [all...]
StrGather.c     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiRom/
EfiRom.c 178 FILE *OutFptr,
188 FILE *OutFptr,
409 FILE *OutFptr,
421 OutFptr - file pointer to output binary ROM image file we're creating
557 if (fwrite (Buffer, DataSize, 1, OutFptr) != 1) {
564 putc (~0, OutFptr);
566 putc (ByteCheckSum, OutFptr);
589 FILE *OutFptr,
603 OutFptr - file pointer to output binary ROM image file we're creating
795 if (fwrite (&RomHdr, sizeof (RomHdr), 1, OutFptr) != 1) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
MakeDeps.c 122 FILE *OutFptr; // output dependencies to this file
312 if ((mGlobals.OutFptr != stdout) && (mGlobals.OutFptr != NULL)) {
313 fclose (mGlobals.OutFptr);
868 fprintf (mGlobals.OutFptr, "%s : ", Str);
871 fprintf (mGlobals.OutFptr, "%s\n", Str);
875 fprintf (mGlobals.OutFptr, "%s : \n", Str);
    [all...]

Completed in 280 milliseconds