/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/Parser/ |
H A D | InfUserExtensionObject.py | 29 UserId = '', 32 self.UserId = UserId 41 def SetUserId(self, UserId): 42 self.UserId = UserId 44 return self.UserId 68 # IdContent is a list contain UserId and IdString 70 # IdString/UserId, it will return 'COMMON' 75 UserId [all...] |
H A D | DecObject.py | 606 self.UserId = ''
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/ |
H A D | ParserValidate.py | 706 # <UserId> ::= (a-zA-Z)(a-zA-Z0-9_.){0,} 709 def IsValidUserId(UserId): 710 UserId = UserId.strip() 712 if UserId.startswith('"') and UserId.endswith('"'): 714 UserId = UserId[1:-1] 715 if not UserId or not UserId[ [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/ |
H A D | GenDecFile.py | 324 UserId = UserExtension.GetUserID() 325 if UserId: 326 if '.' in UserId: 327 UserId = '"' + UserId + '"' 328 SectionName += '.' + UserId
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/ |
H A D | UsbCredentialProvider.c | 677 UINT8 *UserId; local 698 CopyMem (UsbInfo.UserId, (UINT8 *) (UserInfo + 1), sizeof (EFI_USER_INFO_IDENTIFIER)); 725 UserId = (UINT8 *) &mUsbTable->UserInfo[Index].UserId; 726 if (CompareMem (UserId, (UINT8 *) &UsbInfo.UserId, sizeof (EFI_USER_INFO_IDENTIFIER)) == 0) { 892 UINT8 *UserId; local 926 UserId = (UINT8 *) &mUsbTable->UserInfo[Index].UserId; 927 CopyMem (Identifier, UserId, sizeo 1320 UINT8 *UserId; local [all...] |
H A D | UsbCredentialProvider.h | 51 EFI_USER_INFO_IDENTIFIER UserId; member in struct:__anon12700
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/ |
H A D | PwdCredentialProvider.c | 748 UINT8 *UserId; local 769 CopyMem (PwdInfo.UserId, (UINT8 *) (UserInfo + 1), sizeof (EFI_USER_INFO_IDENTIFIER)); 811 UserId = (UINT8 *) &mPwdTable->UserInfo[Index].UserId; 812 if (CompareMem (UserId, (UINT8 *) &PwdInfo.UserId, sizeof (EFI_USER_INFO_IDENTIFIER)) == 0) { 984 UINT8 *UserId; local 1007 &mPwdTable->UserInfo[mPwdTable->ValidIndex - 1].UserId, 1029 UserId = (UINT8 *) &mPwdTable->UserInfo[Index].UserId; 1371 UINT8 *UserId; local [all...] |
H A D | PwdCredentialProvider.h | 49 EFI_USER_INFO_IDENTIFIER UserId; member in struct:__anon12695
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/ |
H A D | UserProfileDelete.c | 37 EFI_STRING_ID UserId; local 97 UserId = HiiSetString ( 103 if (UserId != 0) { 105 return UserId;
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/ |
H A D | InfGuidPpiProtocolSectionParser.py | 236 # Current section UserId, IdString 242 UserId = Item[1] 255 if (UserId, IdString, Arch) not in IdContentList: 257 # To check the UserId and IdString valid or not. 259 if not IsValidUserId(UserId): 273 IdContentList.append((UserId, IdString, Arch)) 277 # of UserId, IdString and Arch values. 278 # This means that the same UserId can be used in more than one 281 # one section header if the UserId or Arch values are 282 # different. The same UserId an [all...] |
H A D | DecParser.py | 700 if Item.UserId == Header[1] and Item.IdString == Header[2]: 705 Item.UserId = Header[1] 837 UserId = Token 856 if [UserExtension, UserId, IdString, Arch] not in \ 859 [UserExtension, UserId, IdString, Arch]
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/PomAdapter/ |
H A D | DecPomAlignment.py | 178 UserId = Item.UserId 179 if UserId.startswith('"') and UserId.endswith('"'): 180 UserId = UserId[1:-1] 181 UserExtension.SetUserID(UserId)
|
H A D | InfPomAlignment.py | 632 UserId = UserExtensionDataObj.GetUserId() 633 if UserId.startswith('"') and UserId.endswith('"'): 634 UserId = UserId[1:-1] 635 UserExtension.SetUserID(UserId)
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/ |
H A D | CommonXml.py | 473 self.UserId = '' 486 self.UserId = XmlAttribute(XmlNode(Item, '%s' % Key), 'UserId') 490 UserExtension.SetUserID(self.UserId) 496 self.UserId = XmlAttribute(XmlNode(Item, '%s' % Key), 'UserId') 531 UserExtension.SetUserID(self.UserId) 544 if self.UserId: 547 AttributeList = [['UserId', str(UserExtension.GetUserID())], 601 Str = "UserId [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/ |
H A D | MigrationUtilities.py | 459 UserId = UserExtensions.UserID 463 return "[UserExtensions.%s.%s]\n %s\n\n" % (UserId, Identifier, Content)
|
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/ |
H A D | UserIdentifyManager.c | 834 @param[out] UserId Points to the user identifer. 839 OUT UINT8 *UserId 851 GenerateIdentifier (UserId); 867 if (CompareMem ((UINT8 *) (UserInfo + 1), UserId, sizeof (EFI_USER_INFO_IDENTIFIER)) == 0) { 1814 EFI_USER_INFO_IDENTIFIER UserId; local 1869 Status = UserCredential->User (UserCredential, User, &UserId);
|