Searched refs:Dir (Results 1 - 25 of 33) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbDesc.h26 #define USB_REQUEST_TYPE(Dir, Type, Target) \
27 ((UINT8)((((Dir) == EfiUsbDataIn ? 0x01 : 0) << 7) | (Type) | (Target)))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DEcc.py172 for Dir in Dirs:
173 Dirname = os.path.join(Root, Dir)
178 Dirs.remove(Dir)
251 for Dir in Dirs:
252 if Dir.upper() == PathParts[0].upper():
253 return Dir
266 for Dir in Dirs:
267 if Dir.upper() == Part.upper():
269 RealPath += Dir
272 ParentDir += Dir
[all...]
H A DCheck.py78 for Dir in Dirnames:
79 Dirname = os.path.join(Dirpath, Dir)
84 Dirnames.remove(Dir)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/
H A DElf64Convert.c639 EFI_IMAGE_DATA_DIRECTORY *Dir; local
692 Dir = &NtHdr->Pe32Plus.OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC];
693 Dir->Size = mCoffOffset - mRelocOffset;
694 if (Dir->Size == 0) {
696 Dir->VirtualAddress = 0;
699 Dir->VirtualAddress = mRelocOffset;
717 EFI_IMAGE_DEBUG_DIRECTORY_ENTRY *Dir; local
731 Dir = (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY*)(mCoffFile + DebugOffset);
732 Dir->Type = EFI_IMAGE_DEBUG_TYPE_CODEVIEW;
733 Dir
[all...]
H A DElf32Convert.c730 EFI_IMAGE_DATA_DIRECTORY *Dir; local
934 Dir = &NtHdr->Pe32.OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_BASERELOC];
935 Dir->Size = mCoffOffset - mRelocOffset;
936 if (Dir->Size == 0) {
938 Dir->VirtualAddress = 0;
941 Dir->VirtualAddress = mRelocOffset;
960 EFI_IMAGE_DEBUG_DIRECTORY_ENTRY *Dir; local
974 Dir = (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY*)(mCoffFile + DebugOffset);
975 Dir->Type = EFI_IMAGE_DEBUG_TYPE_CODEVIEW;
976 Dir
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMisc.py378 Dir = os.path.join(ParentDir, F)
379 self._CACHE_.add(Dir)
380 self._UPPER_CACHE_[Dir.upper()] = Dir
418 # @param Dir The directory the file is relative to
432 def RealPath(File, Dir='', OverrideDir=''):
433 NewFile = os.path.normpath(os.path.join(Dir, File))
440 def RealPath2(File, Dir='', OverrideDir=''):
449 NewFile = GlobalData.gAllFiles[os.path.normpath(os.path.join(Dir, File))]
451 if not NewFile and Dir
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DMisc.py191 for Dir in Dirs:
192 if Dir.startswith('.'):
193 Dirs.remove(Dir)
207 # @param Root: Root Dir
229 # @param Dir: The directory the file is relative to
244 # @param Dir: The directory the file is relative to
247 def RealPath(File, Dir='', OverrideDir=''):
248 NewFile = os.path.normpath(os.path.join(Dir, File))
258 # @param Dir: The directory the file is relative to
261 def RealPath2(File, Dir
[all...]
H A DParsing.py828 for Dir in Dirs:
829 if Dir.startswith('.'):
830 Dirs.remove(Dir)
863 for Dir in Dirs:
864 if Dir.startswith('.'):
865 Dirs.remove(Dir)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Core/
H A DPackageFile.py184 for Dir in Dirs:
185 if Dir.startswith('.'):
186 Dirs.remove(Dir)
H A DIpiDb.py43 Dir = os.path.dirname(DbPath)
44 if not os.path.isdir(Dir):
45 os.mkdir(Dir)
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigFileExplorer.c842 EFI_FILE_HANDLE Dir; local
854 Dir = FileContext->FHandle;
859 Status = Dir->Open (
860 Dir,
867 Dir->Close (Dir);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBootOption.c554 EFI_FILE_HANDLE Dir; local
566 Dir = FileContext->FHandle;
571 Status = Dir->Open (
572 Dir,
579 Dir->Close (Dir);
1203 @param Dir Pointer to current Directory
1212 IN EFI_FILE_HANDLE Dir,
1223 Status = Dir->Open (Dir,
1211 BOpt_IsEfiApp( IN EFI_FILE_HANDLE Dir, IN UINT16 *FileName ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/
H A DRmPkg.py48 # @param WorkspaceDir: Workspace Dir
105 # @param WorkspaceDir: Workspace Dir
109 for Dir in DataBase.GetDpInstallDirList(Guid, Version):
110 RootDir = os.path.normpath(os.path.join(WorkspaceDir, Dir))
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp3436 IMAGE_DATA_DIRECTORY Dir = pOptHdr->DataDirectory[IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG]; local
3437 if (Dir.Size)
3452 if ( Dir.Size != cbExpectV4
3453 && Dir.Size != cbExpectV3
3454 && Dir.Size != cbExpectV2
3455 && Dir.Size != cbExpectV1)
3458 pszLogName, Dir.Size, cbExpectV4, cbExpectV3, cbExpectV2, cbExpectV1));
3466 int rc = rtldrPEReadRVA(pModPe, &u.Cfg64, Dir.Size, Dir.VirtualAddress);
3471 if (u.Cfg64.Size != Dir
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DStrGather.py529 for Dir in IncludeList:
530 if not os.path.exists(Dir):
532 File = os.path.join(Dir, File.Path)
534 # Ignore Dir
H A DUniClassObject.py280 def GetIncludeFile(self, Item, Dir):
356 for Dir in [File.Dir] + self.IncludePathList:
357 IncFile = PathClass(str(IncList[0]), Dir)
H A DGenMake.py194 return [self._MD_TEMPLATE_[self._FileType] % {'dir':Dir} for Dir in DirList]
203 return [self._RD_TEMPLATE_[self._FileType] % {'dir':Dir} for Dir in DirList]
795 CurrentFilePath = F.Dir
H A DBuildEngine.py244 SrcPath = SourceFile.Dir
249 DestPath = self.DestFileList[0].Dir
H A DGenC.py1967 IncList = [Info.MetaFile.Dir]
1975 os.chdir(Info.MetaFile.Dir)
1982 File = PathClass(os.path.join(Root, File), Info.MetaFile.Dir)
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhci.h115 #define USB_REQUEST_TYPE(Dir, Type, Target) \
116 ((UINT8)((((Dir) == EfiUsbDataIn ? 0x01 : 0) << 7) | (Type) | (Target)))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/
H A DMetaDataTable.py212 File.Dir,
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellProtocol.h753 If the FileSystem is NULL, and the directory Dir does not contain a file system's
755 NULL and the directory Dir contains a mapped name, then the current file system and
758 If FileSystem is not NULL, and Dir is NULL, then this changes the current working file
761 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
769 @param Dir Points to the NULL-terminated directory on the device specified by FileSystem.
777 IN CONST CHAR16 *Dir
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Protocol/
H A DEfiShell.h798 If the FileSystem is NULL, and the directory Dir does not contain a file system's
800 NULL and the directory Dir contains a mapped name, then the current file system and
803 If FileSystem is not NULL, and Dir is NULL, then this changes the current working file
806 If FileSystem is not NULL and Dir is not NULL, then this function changes the current
814 @param[in] Dir Points to the NULL-terminated directory on the device specified by FileSystem.
823 IN CONST CHAR16 *Dir
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DParser.py211 for Dir in IncludeList:
212 if os.path.isdir(Dir):
213 SubDir = os.listdir(Dir)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A DBuildReport.py151 for Dir in [os.path.dirname(Source)] + IncludePathList:
152 FullFileName = os.path.normpath(os.path.join(Dir, FileName))
173 for Dir in IncludePathList:
174 FullFileName = os.path.normpath(os.path.join(Dir, FileName))

Completed in 763 milliseconds

12