Searched refs:pszThrdName (Results 1 - 4 of 4) sorted by relevance

/vbox/include/iprt/
H A Dudp.h75 * @param pszThrdName The name of the worker thread.
80 RTR3DECL(int) RTUdpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName,
H A Dtcp.h76 * @param pszThrdName The name of the worker thread.
81 RTR3DECL(int) RTTcpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName,
/vbox/src/VBox/Runtime/r3/
H A Dudp.cpp190 * @param pszThrdName The name of the worker thread.
195 RTR3DECL(int) RTUdpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName, argument
203 AssertPtrReturn(pszThrdName, VERR_INVALID_POINTER);
220 rc = RTThreadCreate(&pServer->Thread, rtUdpServerThread, pServer, 0, enmType, /*RTTHREADFLAGS_WAITABLE*/0, pszThrdName);
H A Dtcp.cpp220 * @param pszThrdName The name of the worker thread.
225 RTR3DECL(int) RTTcpServerCreate(const char *pszAddress, unsigned uPort, RTTHREADTYPE enmType, const char *pszThrdName, argument
233 AssertPtrReturn(pszThrdName, VERR_INVALID_POINTER);
250 rc = RTThreadCreate(&pServer->Thread, rtTcpServerThread, pServer, 0, enmType, /*RTTHREADFLAGS_WAITABLE*/0, pszThrdName);

Completed in 2594 milliseconds