Searched defs:uSessionData (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPDrv-dtrace.cpp908 static DECLCALLBACK(int) vboxDtTOps_TracerIoCtl(PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData, argument
911 NOREF(pThis); NOREF(pSession); NOREF(uSessionData);
920 static DECLCALLBACK(void) vboxDtTOps_TracerClose(PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData) argument
922 NOREF(pThis); NOREF(pSession); NOREF(uSessionData);
/vbox/src/VBox/ExtPacks/VBoxDTrace/
H A DVBoxDTraceR0.cpp1947 static DECLCALLBACK(int) vboxDtTOps_TracerIoCtl(PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData, argument
1950 AssertPtrReturn(uSessionData, VERR_INVALID_POINTER);
1953 int rc = dtrace_ioctl((dtrace_state_t *)uSessionData, (intptr_t)uCmd, (intptr_t)uArg, piRetVal);
1963 static DECLCALLBACK(void) vboxDtTOps_TracerClose(PCSUPDRVTRACERREG pThis, PSUPDRVSESSION pSession, uintptr_t uSessionData) argument
1965 AssertPtrReturnVoid(uSessionData);
1968 dtrace_close((dtrace_state_t *)uSessionData);

Completed in 51 milliseconds