Searched refs:pszNameFmt (Results 1 - 25 of 49) sorted by relevance

12

/vbox/include/iprt/
H A Dlockvalidator.h263 * @param pszNameFmt Name format string for the lock validator,
268 void *hLock, bool fEnabled, const char *pszNameFmt, ...);
284 * @param pszNameFmt Name format string for the lock validator,
289 void *hLock, bool fEnabled, const char *pszNameFmt, va_list va);
315 * @param pszNameFmt Name format string for the lock validator,
320 void *hLock, bool fEnabled, const char *pszNameFmt, ...);
339 * @param pszNameFmt Name format string for the lock validator,
344 void *hLock, bool fEnabled, const char *pszNameFmt, va_list va);
562 * @param pszNameFmt Name format string for the lock validator,
567 void *hLock, bool fSignaller, bool fEnabled, const char *pszNameFmt,
[all...]
H A Dcondvar.h70 * @param pszNameFmt Name format string for the lock validator,
74 RTDECL(int) RTConvVarCreateEx(PRTCONDVAR phCondVar, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...);
H A Dsemaphore.h129 * @param pszNameFmt Name format string for the lock validator,
133 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...);
298 * @param pszNameFmt Name format string for the lock validator,
303 const char *pszNameFmt, ...);
479 * @param pszNameFmt Name format string for the lock validator,
484 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...);
843 * @param pszNameFmt Name format string for the lock validator,
848 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...);
H A Dtest.h526 * @param pszNameFmt The value name format string.
529 RTR3DECL(int) RTTestValueF(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...);
540 * @param pszNameFmt The value name format string.
543 RTR3DECL(int) RTTestValueV(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va);
978 * @param pszNameFmt The value name format string.
981 RTR3DECL(int) RTTestIValueF(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...);
990 * @param pszNameFmt The value name format string.
993 RTR3DECL(int) RTTestIValueV(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va);
H A Dthread.h301 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, va_list va);
319 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, ...);
H A Dcritsect.h134 * @param pszNameFmt Name format string for the lock validator, optional
139 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...);
482 * @param pszNameFmt Name format string for the lock validator, optional
487 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...);
/vbox/src/VBox/Runtime/r3/
H A Dtesti.cpp101 RTR3DECL(int) RTTestIValueF(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...) argument
104 va_start(va, pszNameFmt);
105 int rc = RTTestValueV(NIL_RTTEST, u64Value, enmUnit, pszNameFmt, va);
111 RTR3DECL(int) RTTestIValueV(uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va) argument
113 return RTTestValueV(NIL_RTTEST, u64Value, enmUnit, pszNameFmt, va);
/vbox/src/VBox/VMM/VMMR3/
H A DPDMCritSect.cpp136 * @param pszNameFmt Format string for naming the critical section. For
141 const char *pszNameFmt, va_list va)
154 char *pszName = RTStrAPrintf2V(pszNameFmt, va); /** @todo plug the "leak"... */
223 * @param pszNameFmt Format string for naming the critical section. For
228 const char *pszNameFmt, va_list va)
245 char *pszName = RTStrAPrintf2V(pszNameFmt, va); /** @todo plug the "leak"... */
328 * @param pszNameFmt Format string for naming the critical section. For
333 VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
340 va_start(va, pszNameFmt);
341 int rc = pdmR3CritSectInitOne(pVM, &pCritSect->s, pCritSect, RT_SRC_POS_ARGS, pszNameFmt, v
140 pdmR3CritSectInitOne(PVM pVM, PPDMCRITSECTINT pCritSect, void *pvKey, RT_SRC_POS_DECL, const char *pszNameFmt, va_list va) argument
227 pdmR3CritSectRwInitOne(PVM pVM, PPDMCRITSECTRWINT pCritSect, void *pvKey, RT_SRC_POS_DECL, const char *pszNameFmt, va_list va) argument
363 PDMR3CritSectRwInit(PVM pVM, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
388 pdmR3CritSectInitDevice(PVM pVM, PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, va_list va) argument
406 pdmR3CritSectRwInitDevice(PVM pVM, PPDMDEVINS pDevIns, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, va_list va) argument
421 pdmR3CritSectInitDeviceAuto(PVM pVM, PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
445 pdmR3CritSectInitDriver(PVM pVM, PPDMDRVINS pDrvIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
467 pdmR3CritSectRwInitDriver(PVM pVM, PPDMDRVINS pDrvIns, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
[all...]
/vbox/src/VBox/Runtime/r3/linux/
H A Dsemevent-linux.cpp124 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
144 if (!pszNameFmt)
154 va_start(va, pszNameFmt);
157 pszNameFmt, va);
H A Dsemeventmulti-linux.cpp124 const char *pszNameFmt, ...)
137 if (!pszNameFmt)
147 va_start(va, pszNameFmt);
150 pszNameFmt, va);
123 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemmutex-linux.cpp109 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
124 if (!pszNameFmt)
134 va_start(va, pszNameFmt);
136 !(fFlags & RTSEMMUTEX_FLAGS_NO_LOCK_VAL), pszNameFmt, va);
108 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r3/win/
H A Dsemevent-win.cpp75 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
98 if (!pszNameFmt)
108 va_start(va, pszNameFmt);
111 pszNameFmt, va);
H A Dsemmutex-win.cpp77 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
96 if (!pszNameFmt)
106 va_start(va, pszNameFmt);
108 !(fFlags & RTSEMMUTEX_FLAGS_NO_LOCK_VAL), pszNameFmt, va);
76 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-win.cpp77 const char *pszNameFmt, ...)
94 if (!pszNameFmt)
104 va_start(va, pszNameFmt);
107 pszNameFmt, va);
76 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r3/posix/
H A Dsemmutex-posix.cpp114 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
141 if (!pszNameFmt)
151 va_start(va, pszNameFmt);
153 !(fFlags & RTSEMMUTEX_FLAGS_NO_LOCK_VAL), pszNameFmt, va);
113 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemrw-posix.cpp100 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
128 if (!pszNameFmt)
140 va_start(va, pszNameFmt);
142 fLVEnabled, pszNameFmt, va);
144 va_start(va, pszNameFmt);
146 false /*fSignaller*/, fLVEnabled, pszNameFmt, va);
99 RTSemRWCreateEx(PRTSEMRW phRWSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemevent-posix.cpp103 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
146 if (!pszNameFmt)
156 va_start(va, pszNameFmt);
159 pszNameFmt, va);
/vbox/src/VBox/Runtime/r3/os2/
H A Dsems-os2.cpp52 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
154 const char *pszNameFmt, ...)
271 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
153 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
270 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/common/misc/
H A Dlockvalidator.cpp1009 const char *pszNameFmt, ...)
1012 va_start(va, pszNameFmt);
1014 cMsMinDeadlock, cMsMinOrder, pszNameFmt, va);
1023 const char *pszNameFmt, va_list va)
1034 if (pszNameFmt && *pszNameFmt)
1035 cbName = RTStrPrintfV(szName, sizeof(szName), pszNameFmt, va) + 1;
1105 RTDECL(int) RTLockValidatorClassCreate(PRTLOCKVALCLASS phClass, bool fAutodidact, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
1109 va_start(va, pszNameFmt);
1113 pszNameFmt, v
1006 RTLockValidatorClassCreateEx(PRTLOCKVALCLASS phClass, PCRTLOCKVALSRCPOS pSrcPos, bool fAutodidact, bool fRecursionOk, bool fStrictReleaseOrder, RTMSINTERVAL cMsMinDeadlock, RTMSINTERVAL cMsMinOrder, const char *pszNameFmt, ...) argument
1020 RTLockValidatorClassCreateExV(PRTLOCKVALCLASS phClass, PCRTLOCKVALSRCPOS pSrcPos, bool fAutodidact, bool fRecursionOk, bool fStrictReleaseOrder, RTMSINTERVAL cMsMinDeadlock, RTMSINTERVAL cMsMinOrder, const char *pszNameFmt, va_list va) argument
1135 RTLockValidatorClassCreateUnique(RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
1258 RTLockValidatorClassForSrcPos(RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
2924 RTLockValidatorRecExclInitV(PRTLOCKVALRECEXCL pRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *hLock, bool fEnabled, const char *pszNameFmt, va_list va) argument
2961 RTLockValidatorRecExclInit(PRTLOCKVALRECEXCL pRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *hLock, bool fEnabled, const char *pszNameFmt, ...) argument
2971 RTLockValidatorRecExclCreateV(PRTLOCKVALRECEXCL *ppRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *pvLock, bool fEnabled, const char *pszNameFmt, va_list va) argument
2984 RTLockValidatorRecExclCreate(PRTLOCKVALRECEXCL *ppRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *pvLock, bool fEnabled, const char *pszNameFmt, ...) argument
3394 RTLockValidatorRecSharedInitV(PRTLOCKVALRECSHRD pRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *hLock, bool fSignaller, bool fEnabled, const char *pszNameFmt, va_list va) argument
3431 RTLockValidatorRecSharedInit(PRTLOCKVALRECSHRD pRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *hLock, bool fSignaller, bool fEnabled, const char *pszNameFmt, ...) argument
3441 RTLockValidatorRecSharedCreateV(PRTLOCKVALRECSHRD *ppRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *pvLock, bool fSignaller, bool fEnabled, const char *pszNameFmt, va_list va) argument
3454 RTLockValidatorRecSharedCreate(PRTLOCKVALRECSHRD *ppRec, RTLOCKVALCLASS hClass, uint32_t uSubClass, void *pvLock, bool fSignaller, bool fEnabled, const char *pszNameFmt, ...) argument
[all...]
/vbox/src/VBox/Runtime/generic/
H A Dsemrw-generic.cpp99 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
139 if (!pszNameFmt)
151 va_start(va, pszNameFmt);
153 fLVEnabled, pszNameFmt, va);
155 va_start(va, pszNameFmt);
157 false /*fSignaller*/, fLVEnabled, pszNameFmt, va);
98 RTSemRWCreateEx(PRTSEMRW phRWSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dcritsect-generic.cpp52 const char *pszNameFmt, ...)
74 if (!pszNameFmt)
84 va_start(va, pszNameFmt);
86 !(fFlags & RTCRITSECT_FLAGS_NO_LOCK_VAL), pszNameFmt, va);
51 RTCritSectInitEx(PRTCRITSECT pCritSect, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
/vbox/include/VBox/vmm/
H A Dpdmcritsect.h61 VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...);
H A Dpdmcritsectrw.h53 VMMR3DECL(int) PDMR3CritSectRwInit(PVM pVM, PPDMCRITSECTRW pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...);
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dsemevent-r0drv-freebsd.c72 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dsemevent-r0drv-haiku.c67 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument

Completed in 92 milliseconds

12