Home
last modified time | relevance | path

Searched refs:BufferOut (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/TlsDxe/
DTlsImpl.c52 UINT8 *BufferOut; in TlsEncryptPacket() local
63 BufferOut = NULL; in TlsEncryptPacket()
94 BufferOut = AllocateZeroPool (MAX_BUFFER_SIZE); in TlsEncryptPacket()
95 if (BufferOut == NULL) { in TlsEncryptPacket()
104 TempRecordHeader = (TLS_RECORD_HEADER *) BufferOut; in TlsEncryptPacket()
148 (*FragmentTable)[0].FragmentBuffer = BufferOut; in TlsEncryptPacket()
161 if (BufferOut != NULL) { in TlsEncryptPacket()
162 FreePool (BufferOut); in TlsEncryptPacket()
163 BufferOut = NULL; in TlsEncryptPacket()
202 UINT8 *BufferOut; in TlsDecryptPacket() local
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
DHttpsSupport.c971 UINT8 *BufferOut; in TlsConnectSession() local
981 BufferOut = NULL; in TlsConnectSession()
1005 BufferOut = AllocateZeroPool (BufferOutSize); in TlsConnectSession()
1006 if (BufferOut == NULL) { in TlsConnectSession()
1015 BufferOut, in TlsConnectSession()
1019 FreePool (BufferOut); in TlsConnectSession()
1020 BufferOut = AllocateZeroPool (BufferOutSize); in TlsConnectSession()
1021 if (BufferOut == NULL) { in TlsConnectSession()
1030 BufferOut, in TlsConnectSession()
1035 FreePool (BufferOut); in TlsConnectSession()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2DeviceLibDTpm/
DTpm2Tis.c216 IN OUT UINT8 *BufferOut, in Tpm2TisTpmCommand() argument
314 *(BufferOut + Index) = MmioRead8 ((UINTN)&TisReg->DataFifo); in Tpm2TisTpmCommand()
322 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in Tpm2TisTpmCommand()
329 CopyMem (&Data16, BufferOut, sizeof (UINT16)); in Tpm2TisTpmCommand()
337 CopyMem (&Data32, (BufferOut + 2), sizeof (UINT32)); in Tpm2TisTpmCommand()
349 *(BufferOut + Index) = MmioRead8 ((UINTN)&TisReg->DataFifo); in Tpm2TisTpmCommand()
366 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in Tpm2TisTpmCommand()
DTpm2Ptp.c154 IN OUT UINT8 *BufferOut, in PtpCrbTpmCommand() argument
258 BufferOut[Index] = MmioRead8 ((UINTN)&CrbReg->CrbDataBuffer[Index]); in PtpCrbTpmCommand()
263 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in PtpCrbTpmCommand()
270 CopyMem (&Data16, BufferOut, sizeof (UINT16)); in PtpCrbTpmCommand()
278 CopyMem (&Data32, (BufferOut + 2), sizeof (UINT32)); in PtpCrbTpmCommand()
289 BufferOut[Index] = MmioRead8 ((UINTN)&CrbReg->CrbDataBuffer[Index]); in PtpCrbTpmCommand()
295 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in PtpCrbTpmCommand()
328 IN OUT UINT8 *BufferOut,
/device/linaro/bootloader/edk2/CryptoPkg/Library/TlsLib/
DTlsProcess.c83 OUT UINT8 *BufferOut, OPTIONAL in TlsDoHandshake() argument
101 (BufferOut == NULL && *BufferOutSize != 0)) { in TlsDoHandshake()
165 *BufferOutSize = BIO_read (TlsConn->OutBio, BufferOut, (UINT32) PendingBufferSize); in TlsDoHandshake()
204 OUT UINT8 *BufferOut, OPTIONAL in TlsHandleAlert() argument
223 (BufferOut == NULL && *BufferOutSize != 0)) { in TlsHandleAlert()
253 *BufferOutSize = BIO_read (TlsConn->OutBio, BufferOut, (UINT32) PendingBufferSize); in TlsHandleAlert()
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12DeviceLibDTpm/
DTpm12Tis.c260 IN OUT UINT8 *BufferOut, in Tpm12TisTpmCommand() argument
355 *(BufferOut + Index) = MmioRead8 ((UINTN)&TisReg->DataFifo); in Tpm12TisTpmCommand()
363 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in Tpm12TisTpmCommand()
370 CopyMem (&Data16, BufferOut, sizeof (UINT16)); in Tpm12TisTpmCommand()
378 CopyMem (&Data32, (BufferOut + 2), sizeof (UINT32)); in Tpm12TisTpmCommand()
390 *(BufferOut + Index) = MmioRead8 ((UINTN)&TisReg->DataFifo); in Tpm12TisTpmCommand()
407 DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index])); in Tpm12TisTpmCommand()
/device/linaro/bootloader/edk2/CryptoPkg/Include/Library/
DTlsLib.h145 OUT UINT8 *BufferOut, OPTIONAL
180 OUT UINT8 *BufferOut, OPTIONAL
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DGuidSection.py219 BufferOut = FileHandleOut.read()
220 if BufferIn == BufferOut[TempFileSize - InputFileSize:]: