Searched refs:Output (Results 1 - 25 of 42) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Rand/
H A DCryptRand.c62 If Output is NULL, then return FALSE.
64 @param[out] Output Pointer to buffer to receive random value.
74 OUT UINT8 *Output,
81 if (Output == NULL) {
88 if (RAND_bytes (Output, (UINT32) Size) != 1) {
73 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
H A DCryptRandItc.c70 If Output is NULL, then return FALSE.
72 @param[out] Output Pointer to buffer to receive random value.
82 OUT UINT8 *Output,
89 if (Output == NULL) {
96 if (RAND_bytes (Output, (UINT32) Size) != 1) {
81 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
H A DCryptRandTsc.c70 If Output is NULL, then return FALSE.
72 @param[out] Output Pointer to buffer to receive random value.
82 OUT UINT8 *Output,
89 if (Output == NULL) {
96 if (RAND_bytes (Output, (UINT32) Size) != 1) {
81 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Cipher/
H A DCryptAes.c100 If Output is NULL, then return FALSE.
105 @param[out] Output Pointer to a buffer that receives the AES encryption output.
117 OUT UINT8 *Output
125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) {
135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT);
137 Output += AES_BLOCK_SIZE;
157 If Output is NULL, then return FALSE.
162 @param[out] Output Pointer to a buffer that receives the AES decryption output.
174 OUT UINT8 *Output
182 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output
[all...]
H A DCryptTdes.c126 If Output is NULL, then return FALSE.
131 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
143 OUT UINT8 *Output
151 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) {
160 (DES_cblock *) Output,
167 Output += TDES_BLOCK_SIZE;
187 If Output is NULL, then return FALSE.
192 @param[out] Output Pointer to a buffer that receives the TDES decryption output.
204 OUT UINT8 *Output
212 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output
[all...]
H A DCryptArc4.c93 If Output is NULL, then return FALSE.
98 @param[out] Output Pointer to a buffer that receives the ARC4 encryption output.
110 OUT UINT8 *Output
118 if (Arc4Context == NULL || Input == NULL || Output == NULL) {
124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output);
139 If Output is NULL, then return FALSE.
144 @param[out] Output Pointer to a buffer that receives the ARC4 decryption output.
156 OUT UINT8 *Output
164 if (Arc4Context == NULL || Input == NULL || Output == NULL) {
170 RC4 (Rc4Key, (UINT32) InputSize, Input, Output);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecDriver.c210 if (UdpSrv->Output != NULL && ControllerHandle == UdpSrv->Output->UdpHandle) {
211 UdpIoFreeIo (UdpSrv->Output);
212 UdpSrv->Output = NULL;
215 if (UdpSrv->Input == NULL && UdpSrv->Output == NULL) {
236 if (UdpSrv->Output != NULL && ControllerHandle == UdpSrv->Output->UdpHandle) {
237 UdpIoFreeIo (UdpSrv->Output);
238 UdpSrv->Output = NULL;
241 if (UdpSrv->Input == NULL && UdpSrv->Output
[all...]
H A DIkeService.c274 UdpService->Output = UdpIoCreateIo (
282 if (UdpService->Output == NULL) {
291 UdpService->Output = UdpIoCreateIo (
299 if (UdpService->Output == NULL) {
308 Udp6 = UdpService->Output->Protocol.Udp6;
312 UdpIoFreeIo (UdpService->Output);
319 Status = IkeConfigUdp6 (UdpService->Output, NULL);
H A DIke.h206 UDP_IO *Output; member in struct:__anon12517
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DGenFdsGlobalVariable.py257 # @param OutputDir Output directory
322 # @param Output Path of output file
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):
330 if not os.path.exists(Output):
332 # always update "Output" if no "Input" given
336 # if fdf file is changed after the 'Output" is generated, update the 'Output'
337 OutputTime = os.path.getmtime(Output)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DStringFuncs.c151 STRING_LIST *Output; local
160 Output = NewStringList ();
179 AppendCopyOfStringToList (&Output, Pos);
185 return Output;
H A DTianoCompress.c176 Output (
972 Output (mText[mPos - 1], 0);
978 Output (mText[mPos - 1], 0);
985 Output (
1293 Output ( function
/vbox/src/VBox/Runtime/common/alloc/
H A Dmemtracker.cpp179 * Output callback structure.
949 RTMEMTRACKEROUTPUT Output; local
950 Output.pfnPrintf = rtMemTrackerDumpLogOutput;
951 rtMemTrackerDumpAllWorker(pTracker, &Output);
965 RTMEMTRACKEROUTPUT Output; local
966 Output.pfnPrintf = rtMemTrackerDumpLogOutput;
967 rtMemTrackerDumpStatsWorker(pTracker, &Output, fVerbose);
992 RTMEMTRACKEROUTPUT Output; local
993 Output.pfnPrintf = rtMemTrackerDumpLogRelOutput;
994 rtMemTrackerDumpAllWorker(pTracker, &Output);
1008 RTMEMTRACKEROUTPUT Output; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/Library/
H A DBaseCryptLib.h761 If Output is NULL, then return FALSE.
766 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
778 OUT UINT8 *Output
794 If Output is NULL, then return FALSE.
799 @param[out] Output Pointer to a buffer that receives the TDES decryption output.
811 OUT UINT8 *Output
829 If Output is NULL, then return FALSE.
835 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
848 OUT UINT8 *Output
866 If Output i
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DConnect.c23 @param[in] Output TRUE to have info on the screen, FALSE otherwise.
24 @param[in] AlwaysOutput Override Output for errors.
34 IN CONST BOOLEAN Output,
76 if ((Output && !EFI_ERROR(Status)) || AlwaysOutput) {
85 if ((Output && !EFI_ERROR(Status)) || AlwaysOutput) {
177 @param[in] Output TRUE to have output to screen. FALSE otherwise.
187 IN CONST BOOLEAN Output
220 return (ConnectControllers(Handle1, Handle2, Recursive, Output, (BOOLEAN)(Handle2 != NULL && Handle1 != NULL)));
30 ConnectControllers( IN CONST EFI_HANDLE ControllerHandle OPTIONAL, IN CONST EFI_HANDLE DriverHandle OPTIONAL, IN CONST BOOLEAN Recursive, IN CONST BOOLEAN Output, IN CONST BOOLEAN AlwaysOutput ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminalConIn.c602 @param Output The fetched key.
613 UINT8 *Output
620 *Output = 0;
625 Status = SerialIo->Read (SerialIo, &Size, Output);
637 if (*Output == 0) {
683 @param Output The key will be removed.
692 UINT8 *Output
703 *Output = 0;
707 *Output = TerminalDevice->RawFiFo->Data[Head];
825 @param Output Th
[all...]
H A DTerminal.h897 @param Output The key will be removed.
906 UINT8 *Output
958 @param Output The key will be removed.
967 EFI_INPUT_KEY *Output
1019 @param Output The key will be removed.
1028 UINT16 *Output
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DBuildEngine.py109 # @param Output The list represeting output file(s) for a rule
112 def __init__(self, Type, Input, Output, Command, ExtraDependency=None):
116 if not Output:
117 Output = []
179 for File in Output:
426 Output = self._RuleInfo[Family, self._OutputFile]
430 BuildRule = FileBuildRule(self._FileType, Input, Output, Command, ExtraDependency)
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/IA32/
H A DInterruptTable.S24 # Output: None
H A DInterruptTable.asm26 ; Output: None
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/
H A DInterruptTable.S25 # Output: None
H A DInterruptTable.asm24 ; Output: None
/vbox/src/libs/libxml2-2.6.31/
H A Dlibxml2.spec21 to select subnodes or ranges. A flexible Input/Output mechanism is
40 to select subnodes or ranges. A flexible Input/Output mechanism is
/vbox/src/VBox/Devices/Graphics/BIOS/
H A Dvberom.asm482 ; Output:
524 ; Output:
567 ; Output:
638 ; Output:
688 ; Output:
736 ; Output:
826 ; Output: AX = Status
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrFormPkg.cpp321 IN FILE *Output,
330 if (Output == NULL) {
337 fwrite (PkgHdr, sizeof (EFI_HII_PACKAGE_HEADER), 1, Output);
343 fwrite (Buffer, Size, 1, Output);
347 fwrite (PkgData->Buffer, PkgData->Size, 1, Output);
320 BuildPkg( IN FILE *Output, IN PACKAGE_DATA *PkgData ) argument

Completed in 2462 milliseconds

12