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

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
FfsFileStatement.py 75 OutputDir = os.path.join(GenFdsGlobalVariable.FfsDir, self.NameGuid)
76 if not os.path.exists(OutputDir):
77 os.makedirs(OutputDir)
156 sectList, align = section.GenSection(OutputDir, self.NameGuid, SecIndex, self.KeyStringList, None, Dict)
165 FfsFileOutput = os.path.join(OutputDir, self.NameGuid + '.ffs')
GenFds.py 245 if (Options.outputDir):
246 OutputDirFromCommandLine = GenFdsGlobalVariable.ReplaceWorkspaceMacro(Options.outputDir)
256 OutputDir = GenFdsGlobalVariable.OutputDirDict[Key]
257 if OutputDir[0:2] == '..':
258 OutputDir = os.path.realpath(OutputDir)
260 if OutputDir[1] != ':':
261 OutputDir = os.path.join (GenFdsGlobalVariable.WorkSpaceDir, OutputDir)
263 if not os.path.exists(OutputDir):
    [all...]
GenFdsGlobalVariable.py 272 # @param OutputDir Output directory
277 def SetDir (OutputDir, FdfParser, WorkSpace, ArchList):
278 GenFdsGlobalVariable.VerboseLogger("GenFdsGlobalVariable.OutputDir :%s" % OutputDir)
279 # GenFdsGlobalVariable.OutputDirDict = OutputDir
662 OutputDir = GenFdsGlobalVariable.OutputDirFromDscDict[GenFdsGlobalVariable.ArchList[0]]
664 OutputDir = GenFdsGlobalVariable.OutputDirFromDscDict[Arch]
666 Dict['$(OUTPUT_DIRECTORY)'] = OutputDir
  /external/lzma/CPP/7zip/UI/Common/
Extract.h 26 FString OutputDir;
Extract.cpp 41 FString outDir = options.OutputDir;
ArchiveCommandLine.cpp     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Split/
Split.c 90 [-p, --prefix OutputDir]\n\
229 CHAR8 *OutputDir = NULL;
264 OutputDir = argv[1];
265 if (OutputDir == NULL) {
391 if (OutputDir != NULL) {
393 if (chdir(OutputDir) != 0) {
394 Warning (NULL, 0, 0, NULL, "Change dir to OutputDir Fail.");
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
VpdInfoFile.py 229 OutputDir = os.path.dirname(VpdFileName)
232 OutputMapFileName = os.path.join(OutputDir, "%s.map" % BaseName)
233 OutputBinFileName = os.path.join(OutputDir, "%s.bin" % BaseName)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
Pkcs7Sign.py 133 OutputDir = os.path.dirname(args.OutputFile)
134 if not os.path.exists(OutputDir):
135 print 'ERROR: The output path does not exist: %s' % OutputDir
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 116 OutputDir = os.path.dirname(args.OutputFile)
117 if not os.path.exists(OutputDir):
118 print 'ERROR: The output path does not exist: %s' % OutputDir
  /external/lzma/CPP/7zip/UI/GUI/
ExtractGUI.cpp 181 FString outputDir = options.OutputDir;
183 if (outputDir.IsEmpty())
184 GetCurrentDir(outputDir);
190 if (!MyGetFullPathName(outputDir, outputDirFull))
219 outputDir = us2fs(dialog.DirPath);
232 if (!MyGetFullPathName(outputDir, options.OutputDir))
238 NName::NormalizeDirPathPrefix(options.OutputDir);
241 if (!CreateComplexDirectory(options.OutputDir))
    [all...]
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/
SplitFspBin.py 676 def RebaseFspBin (FspBinary, FspComponent, FspBase, OutputDir, OutputFile):
741 filename = os.path.join(OutputDir, fspname + ext)
755 parser_rebase.add_argument('-o', '--outdir' , dest='OutputDir', type=str, help='Output directory path', default = '.')
761 parser_split.add_argument('-o', '--outdir' , dest='OutputDir', type=str, help='Output directory path', default = '.')
767 parser_genhdr.add_argument('-o', '--outdir' , dest='OutputDir', type=str, help='Output directory path', default = '.')
778 if hasattr(args, 'OutputDir') and not os.path.exists(args.OutputDir):
779 raise Exception ("ERROR: Invalid output directory '%s' !" % args.OutputDir)
782 RebaseFspBin (args.FspBinary, args.FspComponent, args.FspBase, args.OutputDir, args.OutputFile)
784 SplitFspBin (args.FspBinary, args.OutputDir, args.NameTemplate)
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXWin/
SfxWin.cpp 169 eo.OutputDir = outputFolderDefined ? outputFolder : dirPrefix;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenMake.py 526 RespFileList = os.path.join(self._AutoGenObject.OutputDir, 'respfilelist.txt')
530 RespFile = os.path.join(self._AutoGenObject.OutputDir, str(Resp).lower() + '.txt')
586 ListFileName = os.path.join(self._AutoGenObject.OutputDir, "%s.lst" % ListFileMacro.lower()[:len(ListFileMacro) - 5])
628 "platform_output_directory" : self.PlatformInfo.OutputDir,
649 "module_output_directory" : self._AutoGenObject.OutputDir,
    [all...]
AutoGen.py     [all...]
GenPcdDb.py     [all...]
  /external/lzma/CPP/7zip/Bundles/SFXCon/
SfxCon.cpp 362 FString outputDir;
365 outputDir = us2fs(parser[NKey::kOutputDir].PostStrings[0]);
366 NName::NormalizeDirPathPrefix(outputDir);
422 eo.OutputDir = outputDir;
  /external/clang/tools/scan-build/bin/
scan-build 51 OutputDir => undef, # Parent directory to store HTML files.
1008 my $OutputDir = $EnvVars->{"OUTPUT_DIR"};
1015 "CLANG_ANALYZER_OUTPUT_DIR=$OutputDir",
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
build.py 711 # @param OutputDir The output directory for image.
715 def __init__(self, BaseName, Guid, Arch, OutputDir, DebugDir, ImageClass):
719 self.OutputDir = OutputDir
    [all...]
BuildReport.py 611 OutputDir = os.path.join(self._BuildDir, "OUTPUT")
612 DefaultEFIfile = os.path.join(OutputDir, self.ModuleName + ".efi")
614 Tempfile = os.path.join(OutputDir, self.ModuleName + "_hash.tmp")
    [all...]

Completed in 1811 milliseconds