/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
H A D | UsbDesc.h | 26 #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 D | Ecc.py | 172 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 D | Check.py | 78 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 D | Elf64Convert.c | 639 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 D | Elf32Convert.c | 730 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 D | Misc.py | 378 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 D | Misc.py | 191 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 D | Parsing.py | 828 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 D | PackageFile.py | 184 for Dir in Dirs: 185 if Dir.startswith('.'): 186 Dirs.remove(Dir)
|
H A D | IpiDb.py | 43 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 D | SecureBootConfigFileExplorer.c | 842 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 D | BootOption.c | 554 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 D | RmPkg.py | 48 # @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 D | ldrPE.cpp | 3436 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 D | StrGather.py | 529 for Dir in IncludeList: 530 if not os.path.exists(Dir): 532 File = os.path.join(Dir, File.Path) 534 # Ignore Dir
|
H A D | UniClassObject.py | 280 def GetIncludeFile(self, Item, Dir): 356 for Dir in [File.Dir] + self.IncludePathList: 357 IncFile = PathClass(str(IncList[0]), Dir)
|
H A D | GenMake.py | 194 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 D | BuildEngine.py | 244 SrcPath = SourceFile.Dir 249 DestPath = self.DestFileList[0].Dir
|
H A D | GenC.py | 1967 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 D | Xhci.h | 115 #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 D | MetaDataTable.py | 212 File.Dir,
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/ |
H A D | ShellProtocol.h | 753 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 D | EfiShell.h | 798 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 D | Parser.py | 211 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 D | BuildReport.py | 151 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))
|