Home
last modified time | relevance | path

Searched refs:gOptions (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
DGuidChk.c306 static OPTIONS gOptions; variable
329 if (gOptions.CheckGuids || gOptions.CheckSignatures) { in main()
339 if (gOptions.DatabaseOutputFileName[0] != 0) { in main()
340 CreateGuidList (gOptions.DatabaseOutputFileName); in main()
361 memset ((char *) &gOptions, 0, sizeof (gOptions)); in ProcessArgs()
394 gOptions.CheckGuids = TRUE; in ProcessArgs()
402 gOptions.CheckSignatures = TRUE; in ProcessArgs()
410 gOptions.PrintFound = TRUE; in ProcessArgs()
435 StrList->Next = gOptions.ExcludeFiles; in ProcessArgs()
436 gOptions.ExcludeFiles = StrList; in ProcessArgs()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
DVfrServices.cpp222 if ((IfrBinFptr = fopen (gOptions.IfrOutputFileName, "w")) == NULL) { in WriteIfrBytes()
223 Error (UTILITY_NAME, 0, 0, gOptions.IfrOutputFileName, "could not open file for writing"); in WriteIfrBytes()
233 fprintf (IfrBinFptr, "\nunsigned char %sBin[] = {", gOptions.VfrBaseFileName); in WriteIfrBytes()
276 if ((GetUtilityStatus () != STATUS_ERROR) && (gOptions.CreateIfrBinFile != 0)) { in WriteIfrBytes()
280 for (Cptr = gOptions.IfrOutputFileName + strlen (gOptions.IfrOutputFileName) - 1; in WriteIfrBytes()
281 (*Cptr != '.') && (Cptr > gOptions.IfrOutputFileName) && (*Cptr != '\\'); in WriteIfrBytes()
290 strcat (gOptions.IfrOutputFileName, ".hpk"); in WriteIfrBytes()
292 if ((IfrBinFptr = fopen (gOptions.IfrOutputFileName, "wb")) == NULL) { in WriteIfrBytes()
293 Error (UTILITY_NAME, 0, 0, gOptions.IfrOutputFileName, "could not open file for writing"); in WriteIfrBytes()
327 if (gOptions.CreateListFile) { in WriteIfrBytes()
[all …]
DVfrCompile.g99 OPTIONS gOptions;
147 if ((VfrFptr = fopen (gOptions.VfrFileName, "r")) == NULL) {
148 Error (UTILITY_NAME, 0, 0, gOptions.VfrFileName, "could not open input VFR file");
157 Len = strlen (PREPROCESSOR_OPTIONS) + strlen (gOptions.VfrFileName) + 10 +
158 strlen (PREPROCESSOR_COMMAND) + strlen (gOptions.PreprocessorOutputFileName);
159 if (gOptions.CPreprocessorOptions != NULL) {
160 Len += strlen (gOptions.CPreprocessorOptions) + 1;
162 if (gOptions.IncludePaths != NULL) {
163 Len += strlen (gOptions.IncludePaths) + 1;
172 if (gOptions.IncludePaths != NULL) {
[all …]
DEfiVfr.h157 extern OPTIONS gOptions;
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DGlobalData.py23 gOptions = None variable
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
Dbuild.py1004 if GlobalData.gOptions and not GlobalData.gOptions.BuildTarget:
1006 if GlobalData.gOptions and not GlobalData.gOptions.TargetArch:
1008 if GlobalData.gOptions and not GlobalData.gOptions.ToolChain:
2182 GlobalData.gOptions = Option
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaFileParser.py616 if GlobalData.gOptions and GlobalData.gOptions.CheckUsage:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DAutoGen.py1708 if GlobalData.gOptions.SilentMode and "MAKE" in self._ToolDefinitions: