Lines Matching defs:pvUser

97 static DECLCALLBACK(int) ftmR3PageTreeDestroyCallback(PAVLGCPHYSNODECORE pBaseNode, void *pvUser);
347 static DECLCALLBACK(int) ftmR3TcpOpWrite(void *pvUser, uint64_t offStream, const void *pvBuf, size_t cbToWrite)
349 PVM pVM = (PVM)pvUser;
416 static DECLCALLBACK(int) ftmR3TcpOpRead(void *pvUser, uint64_t offStream, void *pvBuf, size_t cbToRead, size_t *pcbRead)
418 PVM pVM = (PVM)pvUser;
517 static DECLCALLBACK(int) ftmR3TcpOpSeek(void *pvUser, int64_t offSeek, unsigned uMethod, uint64_t *poffActual)
519 NOREF(pvUser); NOREF(offSeek); NOREF(uMethod); NOREF(poffActual);
527 static DECLCALLBACK(uint64_t) ftmR3TcpOpTell(void *pvUser)
529 PVM pVM = (PVM)pvUser;
537 static DECLCALLBACK(int) ftmR3TcpOpSize(void *pvUser, uint64_t *pcb)
539 NOREF(pvUser); NOREF(pcb);
547 static DECLCALLBACK(int) ftmR3TcpOpIsOk(void *pvUser)
549 PVM pVM = (PVM)pvUser;
575 static DECLCALLBACK(int) ftmR3TcpOpClose(void *pvUser, bool fCanceled)
577 PVM pVM = (PVM)pvUser;
684 * @param pvUser User argument
686 static DECLCALLBACK(int) ftmR3SyncDirtyPage(PVM pVM, RTGCPHYS GCPhys, uint8_t *pRange, unsigned cbRange, void *pvUser)
688 NOREF(pvUser);
736 * @param pvUser Pointer to the VM.
740 static DECLCALLBACK(int) ftmR3MasterThread(RTTHREAD hThread, void *pvUser)
743 PVM pVM = (PVM)pvUser;
826 rc = PGMR3PhysEnumDirtyFTPages(pVM, ftmR3SyncDirtyPage, NULL /* pvUser */);
917 * @param pvUser Pointer to the VM.
919 static DECLCALLBACK(int) ftmR3PageTreeDestroyCallback(PAVLGCPHYSNODECORE pBaseNode, void *pvUser)
921 PVM pVM = (PVM)pvUser;
938 * @param pvUser Pointer to the VM.
942 static DECLCALLBACK(int) ftmR3StandbyThread(RTTHREAD hThread, void *pvUser)
944 PVM pVM = (PVM)pvUser;
982 static DECLCALLBACK(int) ftmR3StandbyServeConnection(RTSOCKET Sock, void *pvUser)
984 PVM pVM = (PVM)pvUser;
1243 * @param pvUser Not used.
1245 static DECLCALLBACK(VBOXSTRICTRC) ftmR3SetCheckpointRendezvous(PVM pVM, PVMCPU pVCpu, void *pvUser)
1250 NOREF(pvUser);