Searched defs:BytesRead (Results 1 - 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dread.c44 ssize_t BytesRead; local
49 BytesRead = recvfrom ( pDescriptor->MyFD,
59 return BytesRead;
H A Drecv.c51 ssize_t BytesRead; local
56 BytesRead = recvfrom ( s,
66 return BytesRead;
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DMemoryFile.c62 UINT32 BytesRead; local
65 Status = GetFileImage (InputFileName, &InputFileImage, &BytesRead);
78 NewMemoryFile->Eof = InputFileImage + BytesRead;
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2MouseDxe/
H A DCommPs2.c471 UINTN BytesRead; local
486 for (BytesRead = 0; BytesRead < *BufSize; BytesRead++) {
492 Buffer[BytesRead] = IoRead8 (KBC_DATA_PORT);
497 if (BytesRead == 0 || BytesRead != *BufSize) {
501 *BufSize = BytesRead;
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/
H A DCommPs2.c495 UINTN BytesRead; local
498 BytesRead = 0;
511 while (BytesRead < *BufSize) {
520 BytesRead++;
526 if (BytesRead == 0 || BytesRead != *BufSize) {
530 *BufSize = BytesRead;
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/
H A DCommPs2.c495 UINTN BytesRead; local
498 BytesRead = 0;
511 while (BytesRead < *BufSize) {
520 BytesRead++;
526 if (BytesRead == 0 || BytesRead != *BufSize) {
530 *BufSize = BytesRead;
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtBlockIoDxe/
H A DWinNtBlockIo.c908 DWORD BytesRead; local
920 Flag = Private->WinNtThunk->ReadFile (Private->NtHandle, Buffer, (DWORD) BufferSize, (LPDWORD) &BytesRead, NULL);
921 if (!Flag || (BytesRead != BufferSize)) {
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtSerialIoDxe/
H A DWinNtSerialIo.c1513 DWORD BytesRead; local
1528 for (Index = 0, BytesRead = 0; Index < *BufferSize; Index++) {
1531 BytesRead++;
1547 &BytesRead,
1564 if (BytesRead != *BufferSize) {
1570 *BufferSize = (UINTN) BytesRead;
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
H A DTftpServer.c35 size_t BytesRead; local
64 BytesRead = fread ( pContext->pFill,
68 if ( -1 == BytesRead ) {
76 pContext->BytesRemaining -= BytesRead;
77 pContext->ValidBytes += BytesRead;
81 BytesRead,
87 pContext->pFill += BytesRead;
/device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
H A DVolInfo.c233 int BytesRead; local
427 BytesRead = fread (FvImage, 1, FvSize, InputFile);
429 if ((unsigned int) BytesRead != FvSize) {
755 UINTN BytesRead; local
758 BytesRead = 0;
771 BytesRead = sizeof (EFI_FIRMWARE_VOLUME_HEADER) - sizeof (EFI_FV_BLOCK_MAP_ENTRY);
1060 BytesRead += sizeof (EFI_FV_BLOCK_MAP_ENTRY);
1070 if (BytesRead != VolumeHeader.HeaderLength) {

Completed in 80 milliseconds