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

/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemfastmutex-r0drv-darwin.cpp59 lck_mtx_t *pMtx; member in struct:RTSEMFASTMUTEXINTERNAL
75 pThis->pMtx = lck_mtx_alloc_init(g_pDarwinLockGroup, LCK_ATTR_NULL);
76 if (pThis->pMtx)
99 lck_mtx_free(pThis->pMtx, g_pDarwinLockGroup);
100 pThis->pMtx = NULL;
114 lck_mtx_lock(pThis->pMtx);
126 lck_mtx_unlock(pThis->pMtx);
/vbox/src/VBox/ExtPacks/VBoxDTrace/
H A DVBoxDTraceR0.cpp1254 int VBoxDtMutexInit(struct VBoxDtMutex *pMtx) argument
1256 AssertReturn(pMtx != &g_DummyMtx, -1);
1257 AssertPtr(pMtx);
1259 pMtx->hOwner = NIL_RTNATIVETHREAD;
1260 pMtx->hMtx = NIL_RTSEMMUTEX;
1261 int rc = RTSemMutexCreate(&pMtx->hMtx);
1269 void VBoxDtMutexDelete(struct VBoxDtMutex *pMtx) argument
1271 AssertReturnVoid(pMtx != &g_DummyMtx);
1272 AssertPtr(pMtx);
1273 if (pMtx
1283 VBoxDtMutexEnter(struct VBoxDtMutex *pMtx) argument
1300 VBoxDtMutexExit(struct VBoxDtMutex *pMtx) argument
1315 VBoxDtMutexIsOwner(struct VBoxDtMutex *pMtx) argument
[all...]

Completed in 185 milliseconds