Lines Matching defs:offBuffer

183     HGSMIOFFSET offBuffer;             /* Offset in the memory region of the entry data. */
209 HGSMIOFFSET offBuffer; /* Offset of the guest command buffer. */
272 HGSMIOFFSET offBuffer)
274 HGSMIBufferProcess (&pIns->area, &pIns->channelInfo, offBuffer);
303 offCmd = pEntry->offBuffer;
338 HGSMIOFFSET offBuffer,
353 if (bCompleteFirst || pIter->offBuffer == offBuffer)
388 LogRel(("HGSMI[%s]: ignored invalid write to the host FIFO: 0x%08X!!!\n", pIns->pszName, offBuffer));
398 HGSMIOFFSET offBuffer)
400 LogFlowFunc(("pIns %p offBuffer 0x%x\n", pIns, offBuffer));
402 hgsmiProcessHostCmdCompletion (pIns, offBuffer, false);
447 return pEntry->offBuffer;
565 void *pvMem = HGSMIBufferDataFromOffset(&pIns->area, pEntry->offBuffer);
599 if (pIter->offBuffer == offMem)
685 pEntry->offBuffer = offMem;
725 static int hgsmiHostCommandProcess (HGSMIINSTANCE *pIns, HGSMIOFFSET offBuffer,
738 int rc = hgsmiHostCommandWrite (pIns, offBuffer
838 HGSMIOFFSET offBuffer = HGSMIHeapBufferOffset (&pIns->hostHeap, pvMem);
840 int rc = hgsmiHostCommandProcess (pIns, offBuffer,
867 HGSMIOFFSET offBuffer = HGSMIHeapBufferOffset (&pIns->hostHeap, pvMem);
872 // 3, pIns, offBuffer, &pvContext);
874 int rc = hgsmiHostCommandProcess (pIns, offBuffer,
991 rc = SSMR3PutU32(pSSM, pIter->offBuffer);
1020 rc = SSMR3PutU32(pSSM, pIter->offBuffer);
1043 rc = SSMR3GetU32 (pSSM, &pEntry->offBuffer); AssertRC(rc);
1083 rc = SSMR3GetU32 (pSSM, &pEntry->offBuffer); AssertRC(rc);
1445 HGSMIOFFSET offBuffer)
1449 if ( offBuffer < pArea->offBase
1450 || offBuffer > pArea->offLast)
1452 LogFunc(("offset 0x%x is outside the area [0x%x;0x%x]!!!\n", offBuffer, pArea->offBase, pArea->offLast));
1456 return HGSMIOffsetToPointer (pArea, offBuffer);
1684 pEntry->offBuffer = offMem;
1705 HGSMIOFFSET offBuffer,
1708 int rc = hgsmiGuestCommandComplete (pIns, offBuffer);
1735 HGSMIOFFSET offBuffer = HGSMIPointerToOffset(&pIns->area, pHeader);
1737 Assert(offBuffer != HGSMIOFFSET_VOID);
1738 if (offBuffer != HGSMIOFFSET_VOID)
1740 rc = hgsmiCompleteGuestCommand (pIns, offBuffer, bDoIrq);