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

12

/vbox/src/VBox/Runtime/r0drv/linux/
H A Dsemevent-r0drv-linux.c72 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-r0drv-linux.c95 const char *pszNameFmt, ...)
94 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dsemmutex-r0drv-nt.cpp71 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
70 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemevent-r0drv-nt.cpp69 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-r0drv-nt.cpp70 const char *pszNameFmt, ...)
69 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r3/posix/
H A Dsemeventmulti-posix.cpp112 const char *pszNameFmt, ...)
156 if (!pszNameFmt)
166 va_start(va, pszNameFmt);
169 pszNameFmt, va);
111 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/generic/
H A Dcritsectrw-generic.cpp57 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
83 if (!pszNameFmt)
96 va_start(va, pszNameFmt);
98 fLVEnabled, pszNameFmt, va);
102 va_start(va, pszNameFmt);
104 false /*fSignaller*/, fLVEnabled, pszNameFmt, va);
56 RTCritSectRwInitEx(PRTCRITSECTRW pThis, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemrw-lockless-generic.cpp121 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
144 if (!pszNameFmt)
156 va_start(va, pszNameFmt);
158 fLVEnabled, pszNameFmt, va);
160 va_start(va, pszNameFmt);
162 false /*fSignaller*/, fLVEnabled, pszNameFmt, va);
120 RTSemRWCreateEx(PRTSEMRW phRWSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/VMM/include/
H A DPDMInternal.h1258 const char *pszNameFmt, va_list va);
1260 const char *pszNameFmt, ...);
1262 const char *pszNameFmt, ...);
1264 const char *pszNameFmt, va_list va);
1266 const char *pszNameFmt, ...);
1268 const char *pszNameFmt, ...);
/vbox/src/VBox/Runtime/common/misc/
H A Dthread.cpp830 * @param pszNameFmt Thread name format.
834 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, va_list va)
837 RTStrPrintfV(szName, sizeof(szName), pszNameFmt, va);
855 * @param pszNameFmt Thread name format.
859 RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, ...)
863 va_start(va, pszNameFmt);
864 rc = RTThreadCreateV(pThread, pfnThread, pvUser, cbStack, enmType, fFlags, pszNameFmt, va);
833 RTThreadCreateV(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack, RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, va_list va) argument
858 RTThreadCreateF(PRTTHREAD pThread, PFNRTTHREAD pfnThread, void *pvUser, size_t cbStack, RTTHREADTYPE enmType, uint32_t fFlags, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgas.cpp238 * @param pszNameFmt The name format of the address space.
241 RTDECL(int) RTDbgAsCreateV(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, va_list va)
243 AssertPtrReturn(pszNameFmt, VERR_INVALID_POINTER);
246 RTStrAPrintfV(&pszName, pszNameFmt, va);
266 * @param pszNameFmt The name format of the address space.
269 RTDECL(int) RTDbgAsCreateF(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, ...)
272 va_start(va, pszNameFmt);
273 int rc = RTDbgAsCreateV(phDbgAs, FirstAddr, LastAddr, pszNameFmt, va);
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemevent-r0drv-darwin.cpp96 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemmutex-r0drv-darwin.cpp79 RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...)
78 RTSemMutexCreateEx(PRTSEMMUTEX phMutexSem, uint32_t fFlags, RTLOCKVALCLASS hClass, uint32_t uSubClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-r0drv-darwin.cpp100 const char *pszNameFmt, ...)
99 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dsemeventmulti-r0drv-freebsd.c92 const char *pszNameFmt, ...)
91 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dsemeventmulti-r0drv-haiku.c67 const char *pszNameFmt, ...)
66 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dsemevent-r0drv-os2.cpp75 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-r0drv-os2.cpp75 const char *pszNameFmt, ...)
74 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dsemevent-r0drv-solaris.c101 RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
H A Dsemeventmulti-r0drv-solaris.c100 const char *pszNameFmt, ...)
99 RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...) argument
/vbox/src/VBox/Runtime/r3/
H A Dtest.cpp1593 RTR3DECL(int) RTTestValueF(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, ...) argument
1596 va_start(va, pszNameFmt);
1597 int rc = RTTestValueV(hTest, u64Value, enmUnit, pszNameFmt, va);
1603 RTR3DECL(int) RTTestValueV(RTTEST hTest, uint64_t u64Value, RTTESTUNIT enmUnit, const char *pszNameFmt, va_list va) argument
1606 RTStrAPrintfV(&pszName, pszNameFmt, va);
/vbox/include/iprt/
H A Ddbg.h518 * @param pszNameFmt The name format of the address space.
521 RTDECL(int) RTDbgAsCreateV(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, va_list va);
531 * @param pszNameFmt The name format of the address space.
534 RTDECL(int) RTDbgAsCreateF(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, ...);
/vbox/include/VBox/vmm/
H A Dpdmdev.h3094 * @param pszNameFmt Format string for naming the critical section.
3099 const char *pszNameFmt, va_list va));
4924 * @param pszNameFmt Format string for naming the critical section.
4928 DECLINLINE(int) PDMDevHlpCritSectInit(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL, const char *pszNameFmt, ...) argument
4932 va_start(va, pszNameFmt);
4933 rc = pDevIns->pHlpR3->pfnCritSectInit(pDevIns, pCritSect, RT_SRC_POS_ARGS, pszNameFmt, va);
/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevHlp.cpp1662 const char *pszNameFmt, va_list va)
1665 LogFlow(("pdmR3DevHlp_CritSectInit: caller='%s'/%d: pCritSect=%p pszNameFmt=%p:{%s}\n",
1666 pDevIns->pReg->szName, pDevIns->iInstance, pCritSect, pszNameFmt, pszNameFmt));
1670 int rc = pdmR3CritSectInitDevice(pVM, pDevIns, pCritSect, RT_SRC_POS_ARGS, pszNameFmt, va);

Completed in 95 milliseconds

12