/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Cipher/ |
H A D | CryptAes.c | 90 This function performs AES encryption on data buffer pointed by Input, of specified 98 If Input is NULL, then return FALSE. 103 @param[in] Input Pointer to the buffer containing the data to be encrypted. 104 @param[in] InputSize Size of the Input buffer in bytes. 115 IN CONST UINT8 *Input, 125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) { 135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT); 136 Input += AES_BLOCK_SIZE; 147 This function performs AES decryption on data buffer pointed by Input, of specified 155 If Input i 113 AesEcbEncrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument 170 AesEcbDecrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument 230 AesCbcEncrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument 288 AesCbcDecrypt( IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument [all...] |
H A D | CryptTdes.c | 116 This function performs TDES encryption on data buffer pointed by Input, of specified 124 If Input is NULL, then return FALSE. 129 @param[in] Input Pointer to the buffer containing the data to be encrypted. 130 @param[in] InputSize Size of the Input buffer in bytes. 141 IN CONST UINT8 *Input, 151 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) { 159 (const_DES_cblock *) Input, 166 Input += TDES_BLOCK_SIZE; 177 This function performs TDES decryption on data buffer pointed by Input, of specified 185 If Input i 139 TdesEcbEncrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument 200 TdesEcbDecrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument 264 TdesCbcEncrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument 328 TdesCbcDecrypt( IN VOID *TdesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output ) argument [all...] |
H A D | CryptArc4.c | 86 This function performs ARC4 encryption on data buffer pointed by Input, of specified 92 If Input is NULL, then return FALSE. 96 @param[in] Input Pointer to the buffer containing the data to be encrypted. 97 @param[in] InputSize Size of the Input buffer in bytes. 108 IN CONST UINT8 *Input, 118 if (Arc4Context == NULL || Input == NULL || Output == NULL) { 124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output); 132 This function performs ARC4 decryption on data buffer pointed by Input, of specified 138 If Input is NULL, then return FALSE. 142 @param[in] Input Pointe 106 Arc4Encrypt( IN OUT VOID *Arc4Context, IN CONST UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument 152 Arc4Decrypt( IN OUT VOID *Arc4Context, IN UINT8 *Input, IN UINTN InputSize, OUT UINT8 *Output ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/ |
H A D | RmPkg.py | 55 Input = stdin.readline() 56 Input = Input.replace('\r', '').replace('\n', '') 57 if Input.upper() != 'Y': 190 Input = stdin.readline() 191 Input = Input.replace('\r', '').replace('\n', '') 192 if Input.upper() != 'Y': 202 Input = stdin.readline() 203 Input [all...] |
H A D | InstallPkg.py | 79 Input = stdin.readline() 80 Input = Input.replace('\r', '').replace('\n', '') 81 if Input == '': 83 Input = Input.replace('\r', '').replace('\n', '') 84 return InstallNewPackage(WorkspaceDir, Input, False) 106 Input = stdin.readline() 107 Input = Input [all...] |
H A D | MkPkg.py | 63 Input = stdin.readline() 64 Input = Input.replace('\r', '').replace('\n', '') 65 if Input.upper() != "Y":
|
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/ |
H A D | IpSecDriver.c | 205 if (UdpSrv->Input != NULL && ControllerHandle == UdpSrv->Input->UdpHandle) { 206 UdpIoFreeIo (UdpSrv->Input); 207 UdpSrv->Input = NULL; 215 if (UdpSrv->Input == NULL && UdpSrv->Output == NULL) { 231 if (UdpSrv->Input != NULL && ControllerHandle == UdpSrv->Input->UdpHandle) { 232 UdpIoFreeIo (UdpSrv->Input); 233 UdpSrv->Input = NULL; 241 if (UdpSrv->Input [all...] |
H A D | IkeService.c | 379 Udp4Srv->Input = UdpIoCreateIo ( 387 if (Udp4Srv->Input == NULL) { 407 UdpIoRecvDatagram (Udp4Srv->Input, IkeDispatch, Udp4Srv, 0); 447 Udp6Srv->Input = UdpIoCreateIo ( 455 if (Udp6Srv->Input == NULL) { 475 UdpIoRecvDatagram (Udp6Srv->Input, IkeDispatch, Udp6Srv, 0); 683 UdpIoRecvDatagram (UdpService->Input, IkeDispatch, UdpService, 0);
|
H A D | Ike.h | 205 UDP_IO *Input; member in struct:__anon12517
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/ |
H A D | GenFdsGlobalVariable.py | 323 # @param Input Path list of input files 325 # @retval True if Output doesn't exist, or any Input is newer 326 # @retval False if all Input is older than Output 329 def NeedsUpdate(Output, Input): 332 # always update "Output" if no "Input" given 333 if Input == None or len(Input) == 0: 341 for F in Input: 342 # always update "Output" if any "Input" doesn't exist 345 # always update "Output" if any "Input" i [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/ |
H A D | GnuGenBootSector.c | 97 BOOLEAN Input; member in struct:_PATH_INFO 167 if (PathInfo->Input) { 347 InputPathInfo.Input = TRUE; 349 Error (NULL, 0, 1003, "Invalid option value", "Input file name can't be NULL"); 353 Error (NULL, 0, 1003, "Invalid option value", "Input file is missing"); 362 OutputPathInfo.Input = FALSE; 417 Error (NULL, 0, 1001, "Missing options", "Input file is missing"); 427 Error (NULL, 0, 1003, "Invalid option value", "Input file can't be found.");
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenBootSector/ |
H A D | GenBootSector.c | 119 BOOL Input; member in struct:_PATH_INFO 355 if (!PathInfo->Input && (PathInfo->Type == PathUsb)) { 386 if (PathInfo->Input || PathInfo->Type != PathFile) { 604 if (!PathInfo->Input && (DriveInfo.DriveType->Type == DRIVE_FIXED)) { 623 if (PathInfo->Input) { 683 InputPathInfo.Input = TRUE; 685 Error (NULL, 0, 1003, "Invalid option value", "Input file name can't be NULL"); 689 Error (NULL, 0, 1003, "Invalid option value", "Input file is missing"); 698 OutputPathInfo.Input = FALSE; 753 Error (NULL, 0, 1001, "Missing options", "Input fil [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/Library/ |
H A D | BaseCryptLib.h | 751 This function performs TDES encryption on data buffer pointed by Input, of specified 759 If Input is NULL, then return FALSE. 764 @param[in] Input Pointer to the buffer containing the data to be encrypted. 765 @param[in] InputSize Size of the Input buffer in bytes. 776 IN CONST UINT8 *Input, 784 This function performs TDES decryption on data buffer pointed by Input, of specified 792 If Input is NULL, then return FALSE. 797 @param[in] Input Pointer to the buffer containing the data to be decrypted. 798 @param[in] InputSize Size of the Input buffer in bytes. 809 IN CONST UINT8 *Input, [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/ |
H A D | BuildEngine.py | 85 def AddInput(self, Input): 86 if Input not in self.Inputs: 87 self.Inputs.append(Input) 108 # @param Input The dictionary represeting input file(s) for a rule 112 def __init__(self, Type, Input, Output, Command, ExtraDependency=None): 113 # The Input should not be empty 114 if not Input: 115 Input = [] 164 for File in Input: 425 Input [all...] |
H A D | GenDepex.py | 395 Option, Input = GetOptions() 412 if len(Input) > 0 and Option.Expression == "": 413 DxsFile = Input[0]
|
/vbox/src/VBox/Additions/WINNT/VBoxTray/ |
H A D | VBoxDnD.cpp | 1357 INPUT Input[1] = { 0 }; local 1358 Input[0].type = INPUT_MOUSE; 1359 Input[0].mi.dwFlags = MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE 1361 Input[0].mi.dx = x * (65535 / iScreenX); 1362 Input[0].mi.dy = y * (65535 / iScreenY); 1366 Input, sizeof(INPUT))) 1404 INPUT Input[1] = { 0 }; local 1405 Input[0].type = INPUT_MOUSE; 1406 Input[0].mi.dwFlags = MOUSEEVENTF_LEFTUP; 1407 if (!s_pfnSendInput(1, Input, sizeo [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/IA32/ |
H A D | InterruptTable.S | 22 # Input: None
|
H A D | InterruptTable.asm | 24 ; Input: None
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/ |
H A D | InterruptTable.S | 23 # Input: None
|
H A D | InterruptTable.asm | 22 ; Input: None
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/ |
H A D | TerminalConIn.c | 200 // Simple Text Input Ex protocol functions 519 UINT8 Input; local 574 Status = GetOneKeyFromSerial (TerminalDevice->SerialIo, &Input); 587 RawFiFoInsertOneKey (TerminalDevice, Input); 648 @param Input The key will be input. 658 UINT8 Input 672 TerminalDevice->RawFiFo->Data[Tail] = Input; 911 @param Input The key will be input. 921 UINT16 Input 937 TerminalDevice->UnicodeFiFo->Data[Tail] = Input; [all...] |
H A D | Terminal.h | 262 // Simple Text Input Ex protocol prototypes 862 @param Input The fetched key. 873 UINT8 *Input 880 @param Input The key will be input. 890 UINT8 Input 1002 @param Input The key will be input. 1012 UINT16 Input 1102 can be read through the Simple Input Protocol.
|
/vbox/src/VBox/Devices/Graphics/BIOS/ |
H A D | vberom.asm | 480 ; Input: 511 ; Input: 557 ; Input: 619 ; Input(16-bit): 645 ; Input(32-bit): 683 ; Input: 726 ; Input: 824 ; Input: AX = 4F0Ah VBE 2.0 Protected Mode Interface
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | libxml2.spec | 21 to select subnodes or ranges. A flexible Input/Output mechanism is 40 to select subnodes or ranges. A flexible Input/Output mechanism is
|
/vbox/include/iprt/cpp/ |
H A D | xml.h | 179 * The Input class represents an input stream. 185 class RT_DECL_CLASS Input : virtual public Stream class in namespace:xml 240 class RT_DECL_CLASS File : public Input, public Output 294 * See Input::read(). If this method is called in wrong file mode, 325 class RT_DECL_CLASS MemoryBuf : public Input
|