Home | History | Annotate | Download | only in DxeNetLib

Lines Matching refs:Bulk

103   UINT8                     *Bulk;

113 Bulk = AllocatePool (Len);
115 if (Bulk == NULL) {
122 Vector->Block[0].Bulk = Bulk;
125 Nbuf->BlockOp[0].BlockHead = Bulk;
126 Nbuf->BlockOp[0].BlockTail = Bulk + Len;
128 Nbuf->BlockOp[0].Head = Bulk;
129 Nbuf->BlockOp[0].Tail = Bulk;
173 gBS->FreePool (Vector->Block[0].Bulk);
183 gBS->FreePool (Vector->Block[Index].Bulk);
413 corresponding net vector according to the bulk pointer and bulk length.
416 bulk's head and tail respectively. So, this function alone can't be used by
420 @param[in] Bulk Pointer to the data.
421 @param[in] Len Length of the bulk data.
422 @param[in] Index The data block index in the net buffer the bulk
429 IN UINT8 *Bulk,
444 Block->Bulk = Bulk;
445 BlockOp->BlockHead = Bulk;
446 BlockOp->BlockTail = Bulk + Len;
447 BlockOp->Head = Bulk;
448 BlockOp->Tail = Bulk + Len;
462 @param[in] Bulk Pointer to the data.
463 @param[in] Len Length of the bulk data.
464 @param[in] Index The data block index in the net buffer the bulk
471 IN UINT8 *Bulk,
482 BlockOp->BlockHead = Bulk;
483 BlockOp->BlockTail = Bulk + Len;
484 BlockOp->Head = Bulk;
485 BlockOp->Tail = Bulk + Len;
743 SavedFragment.Bulk = NULL;
782 // by the first bulk.
790 CopyMem (Header, ExtFragment[Index].Bulk, ExtFragment[Index].Len);
808 CopyMem (Header, ExtFragment[Index].Bulk, Len);
822 ExtFragment[Index].Bulk += Len;
855 NetbufSetBlock (Nbuf, ExtFragment[Index].Bulk, ExtFragment[Index].Len, CurBlock);
909 ExtFragment[Current].Bulk = Nbuf->BlockOp[Index].Head;
984 Fragment[Current].Bulk = Nbuf->BlockOp[Index].Head;
1645 Compute the checksum for a bulk of data.
1647 @param[in] Bulk Pointer to the data.
1656 IN UINT8 *Bulk,
1665 Sum += *(UINT16 *) Bulk;
1666 Bulk += 2;
1674 Sum += *(UINT8 *) Bulk;
1886 FreePool (Nbuf->Vector->Block[0].Bulk);