Searched defs:pSGEntry (Results 1 - 2 of 2) sorted by relevance
/vbox/src/VBox/Devices/Storage/ |
H A D | DrvSCSIHost.cpp | 109 PRTSGSEG pSGEntry = &pRequest->paScatterGatherHead[cSGEntry]; local 114 size_t cbToCopy = (cbBuf < pSGEntry->cbSeg) ? cbBuf : pSGEntry->cbSeg; 116 memcpy(pSGEntry->pvSeg, pu8Buf, cbToCopy); 127 pSGEntry++;
|
H A D | DevLsiLogicSCSI.cpp | 1785 * @param pSGEntry Pointer to the SG entry to dump 1787 static void lsilogicDumpSGEntry(PMptSGEntryUnion pSGEntry) argument 1791 switch (pSGEntry->Simple32.u2ElementType) 1796 Log(("%s: u24Length=%u\n", __FUNCTION__, pSGEntry->Simple32.u24Length)); 1797 Log(("%s: fEndOfList=%d\n", __FUNCTION__, pSGEntry->Simple32.fEndOfList)); 1798 Log(("%s: f64BitAddress=%d\n", __FUNCTION__, pSGEntry->Simple32.f64BitAddress)); 1799 Log(("%s: fBufferContainsData=%d\n", __FUNCTION__, pSGEntry->Simple32.fBufferContainsData)); 1800 Log(("%s: fLocalAddress=%d\n", __FUNCTION__, pSGEntry->Simple32.fLocalAddress)); 1801 Log(("%s: fEndOfBuffer=%d\n", __FUNCTION__, pSGEntry->Simple32.fEndOfBuffer)); 1802 Log(("%s: fLastElement=%d\n", __FUNCTION__, pSGEntry [all...] |
Completed in 49 milliseconds