Searched refs:phMutexSem (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/nt/
H A Dsemmutex-r0drv-nt.cpp64 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
66 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
70 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
87 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dsemmutex-r0drv-freebsd.c61 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
64 AssertPtrReturn(phMutexSem, VERR_INVALID_POINTER);
72 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dsemmutex-r0drv-haiku.c66 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
69 AssertPtrReturn(phMutexSem, VERR_INVALID_POINTER);
81 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemmutex-r0drv-darwin.cpp72 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
74 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
78 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
97 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r3/os2/
H A Dsems-os2.cpp264 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
266 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
270 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
283 *phMutexSem = (RTSEMMUTEX)(void *)hmtx;
/vbox/src/VBox/Runtime/r3/win/
H A Dsemmutex-win.cpp70 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
72 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
76 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
112 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r3/linux/
H A Dsemmutex-linux.cpp102 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
104 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
108 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
141 *phMutexSem = pThis;
/vbox/src/VBox/Runtime/r3/posix/
H A Dsemmutex-posix.cpp107 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem) argument
109 return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
113 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, argument
158 *phMutexSem = pThis;
/vbox/include/iprt/
H A Dsemaphore.h461 * @param phMutexSem Where to store the mutex semaphore handle.
463 RTDECL(int) RTSemMutexCreate(PRTSEMMUTEX phMutexSem); variable
483 RTDECL(int) RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags,
651 # define RTSemMutexCreate(phMutexSem) \
652 RTSemMutexCreateEx((phMutexSem), 0 /*fFlags*/, \

Completed in 41 milliseconds