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

1 2

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOs.py 16 from Common.LongFilePathSupport import LongFilePath
22 return os.access(LongFilePath(path), mode)
25 return os.remove(LongFilePath(path))
28 return os.removedirs(LongFilePath(name))
31 return os.rmdir(LongFilePath(path))
34 return os.mkdir(LongFilePath(path))
37 return os.makedirs(LongFilePath(name), mode)
40 return os.rename(LongFilePath(old), LongFilePath(new))
43 return os.chdir(LongFilePath(path))
    [all...]
LongFilePathOsPath.py 15 from Common.LongFilePathSupport import LongFilePath
18 return os.path.isfile(LongFilePath(path))
21 return os.path.isdir(LongFilePath(path))
24 return os.path.exists(LongFilePath(path))
27 return os.path.getsize(LongFilePath(filename))
30 return os.path.getmtime(LongFilePath(filename))
33 return os.path.getatime(LongFilePath(filename))
36 return os.path.getctime(LongFilePath(filename))
LongFilePathSupport.py 23 def LongFilePath(FileName):
39 return open(LongFilePath(FileName), Mode, Buffer)
42 return codecs.open(LongFilePath(Filename), Mode, Encoding, Errors, Buffering)
49 with open(LongFilePath(src), 'rb') as fsrc:
50 with open(LongFilePath(dst), 'wb') as fdst:
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GnuGenBootSector/
GnuGenBootSector.c 150 f = fopen (LongFilePath (PathInfo->Path),"r");
164 f = fopen (LongFilePath (PathInfo->Path), "r");
208 InputFile = fopen (LongFilePath (InputInfo->PhysicalPath), "r");
232 OutputFile = fopen (LongFilePath (OutputInfo->PhysicalPath), "r+");
234 OutputFile = fopen (LongFilePath (OutputInfo->PhysicalPath), "w");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
CommonLib.c 197 InputFile = fopen (LongFilePath (InputFileName), "rb");
298 OutputFile = fopen (LongFilePath (OutputFileName), "wb");
593 LongFilePath (
605 LongFilePath A pointer to the converted long file path.
CommonLib.h 149 LongFilePath (
161 LongFilePath A pointer to the converted long file path.
OsPath.c 291 InputFile = fopen (LongFilePath (InputFileName), "rb");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Split/
Split.c 359 In = fopen (LongFilePath (InputFileName), "rb");
416 Out1 = fopen (LongFilePath (OutFileName1), "wb");
424 Out2 = fopen (LongFilePath (OutFileName2), "wb");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiLdrImage/
EfiLdrImage.c 265 fpOut = fopen (LongFilePath (OutputFileName), "w+b");
289 fpIn = fopen (LongFilePath (InputFileNames[i]), "rb");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenCrc32/
GenCrc32.c 279 InFile = fopen (LongFilePath (InputFileName), "rb");
303 OutFile = fopen (LongFilePath (OutputFileName), "wb");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenPage/
GenPage.c 246 PageFile = fopen (LongFilePath (PageFileName), "w+b");
252 NoPageFile = fopen (LongFilePath (NoPageFileName), "r+b");
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
IdfClassObject.py 21 from Common.LongFilePathSupport import LongFilePath
84 IdfFile = open(LongFilePath(File.Path), mode='r')
UniClassObject.py 26 from Common.LongFilePathSupport import LongFilePath
244 FileIn = self.OpenUniFile(LongFilePath(File.Path))
395 FileIn = self.OpenUniFile(LongFilePath(File.Path))
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrCompiler.cpp 644 if ((pVfrFile = fopen (LongFilePath (mOptions.VfrFileName), "r")) == NULL) {
713 if ((pInFile = fopen (LongFilePath (InFileName), "r")) == NULL) {
843 if ((pFile = fopen (LongFilePath (mOptions.PkgOutputFileName), "wb")) == NULL) {
886 if ((pFile = fopen (LongFilePath (mOptions.COutputFileName), "w")) == NULL) {
933 if ((pInFile = fopen (LongFilePath (InFileName), "r")) == NULL) {
938 if ((pOutFile = fopen (LongFilePath (mOptions.RecordListFile), "w")) == NULL) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
GenFw.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFv/
GenFvInternalLib.c 874 PeMapFile = fopen (LongFilePath (PeMapFileName), "r");
    [all...]
GenFv.c 604 FpFile = fopen (LongFilePath (OutFileName), "w");
673 FpFile = fopen (LongFilePath (AddrFileName), "w");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenVtf/
GenVtf.c 1069 Fp = fopen (LongFilePath (VtfInfo->CompSymName), "rb");
1193 Fp = fopen (LongFilePath (VtfInfo->CompBinName), "rb");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
EfiRom.c 132 if ((FptrOut = fopen (LongFilePath (mOptions.OutFileName), "wb")) == NULL) {
244 if ((InFptr = fopen (LongFilePath (InFile->FileName), "rb")) == NULL) {
458 if ((InFptr = fopen (LongFilePath (InFile->FileName), "rb")) == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFfs/
GenFfs.c 311 InFile = fopen (LongFilePath (InputFileName[Index]), "rb");
925 FfsFile = fopen (LongFilePath (OutputFileName), "wb");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenSec/
GenSec.c 279 InFile = fopen (LongFilePath (InputFileName[0]), "rb");
469 InFile = fopen (LongFilePath (InputFileName[Index]), "rb");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenBootSector/
GenBootSector.c 639 f = fopen (LongFilePath (PathInfo->Path), "r");
  /device/linaro/bootloader/edk2/BaseTools/Source/C/BootSectImage/
bootsectimage.c 121 FileHandle = fopen (LongFilePath (FileName), "r+b");
159 FileHandle = fopen (LongFilePath (FileName), "rb");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c 1618 InputFile = fopen (LongFilePath (InputFileName), "rb");
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
VolInfo.c 393 InputFile = fopen (LongFilePath (mUtilityFilename), "rb");
    [all...]

Completed in 441 milliseconds

1 2