Searched refs:phEventSem (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dsemevent-r0drv-freebsd.c66 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
68 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
72 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
77 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
87 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dsemevent-r0drv-haiku.c61 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
63 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
67 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
72 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
84 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dsemevent-r0drv-linux.c66 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
68 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
72 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
88 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemevent-r0drv-darwin.cpp90 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
92 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
96 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
101 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
116 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dsemevent-r0drv-os2.cpp69 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
71 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
75 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
80 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
92 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dsemevent-r0drv-solaris.c95 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
97 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
101 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
106 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
120 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dsemevent-r0drv-nt.cpp63 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
65 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
69 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
82 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r3/linux/
H A Dsemevent-linux.cpp118 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
120 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
124 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
163 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r3/os2/
H A Dsems-os2.cpp46 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
48 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
52 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
65 *phEventSem = (RTSEMEVENT)(void *)hev;
/vbox/src/VBox/Runtime/r3/win/
H A Dsemevent-win.cpp69 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
71 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
75 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
117 *phEventSem = pThis;
/vbox/src/VBox/Runtime/r3/posix/
H A Dsemevent-posix.cpp97 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem) argument
99 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
103 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
165 *phEventSem = pThis;
/vbox/include/iprt/
H A Dsemaphore.h112 * @param phEventSem Where to store the handle to the newly created
115 RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem); variable
121 * @param phEventSem Where to store the handle to the newly created
133 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...);

Completed in 44 milliseconds