Searched defs:hServer (Results 1 - 10 of 10) sorted by relevance

/vbox/include/iprt/
H A Dlocalipc.h88 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
90 RTDECL(int) RTLocalIpcServerDestroy(RTLOCALIPCSERVER hServer); variable
99 * @param hServer The server handle.
103 RTDECL(int) RTLocalIpcServerListen(RTLOCALIPCSERVER hServer, PRTLOCALIPCSESSION phClientSession);
109 * @param hServer The server handle. The nil value is quietly ignored (VINF_SUCCESS).
111 RTDECL(int) RTLocalIpcServerCancel(RTLOCALIPCSERVER hServer); variable
/vbox/src/VBox/Runtime/testcase/
H A DtstRTLocalIpc.cpp46 RTLOCALIPCSERVER hServer; member in struct:LOCALIPCTHREADCTX
121 rc = RTLocalIpcServerListen(pCtx->hServer, &ipcSession);
228 rc = RTLocalIpcServerListen(pCtx->hServer, &ipcSession);
377 RTTEST_CHECK_RC_BREAK(pCtx->hTest, RTLocalIpcServerListen(pCtx->hServer, &hSession), VINF_SUCCESS);
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxIPC.cpp52 RTLOCALIPCSERVER hServer; member in struct:VBOXIPCCONTEXT
197 rc = RTLocalIpcServerCreate(&gCtx.hServer, szPipeName,
244 if (pCtx->hServer != NIL_RTLOCALIPCSERVER)
246 int rc2 = RTLocalIpcServerCancel(pCtx->hServer);
283 rc = RTLocalIpcServerDestroy(pCtx->hServer);
542 int rc = RTLocalIpcServerListen(pCtx->hServer, &hClientSession);
/vbox/src/VBox/VMM/include/
H A DFTMInternal.h86 R3PTRTYPE(PRTTCPSERVER) hServer; member in struct:FTM::__anon16887
/vbox/src/VBox/HostDrivers/Support/
H A DSUPSvcGrant.cpp125 RTLOCALIPCSERVER hServer; member in struct:SUPSVCGRANT
441 int rc = RTLocalIpcServerListen(pThis->hServer, &hClientSession);
662 rc = RTLocalIpcServerCreate(&pThis->hServer, SUPSVC_GRANT_SERVICE_NAME, RTLOCALIPC_FLAGS_MULTI_SESSION);
696 RTLocalIpcServerCancel(pThis->hServer);
705 RTLocalIpcServerDestroy(pThis->hServer);
706 pThis->hServer = NIL_RTLOCALIPCSERVER;
814 int rc2 = RTLocalIpcServerCancel(pThis->hServer);
885 RTLocalIpcServerCancel(pThis->hServer);
947 RTLOCALIPCSERVER hServer; local
948 ASMAtomicXchgHandle(&pThis->hServer, NIL_RTLOCALIPCSERVE
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Dlocalipc-win.cpp415 RTDECL(int) RTLocalIpcServerDestroy(RTLOCALIPCSERVER hServer) argument
420 if (hServer == NIL_RTLOCALIPCSERVER)
422 PRTLOCALIPCSERVERINT pThis = (PRTLOCALIPCSERVERINT)hServer;
450 RTDECL(int) RTLocalIpcServerListen(RTLOCALIPCSERVER hServer, PRTLOCALIPCSESSION phClientSession) argument
455 PRTLOCALIPCSERVERINT pThis = (PRTLOCALIPCSERVERINT)hServer;
557 RTDECL(int) RTLocalIpcServerCancel(RTLOCALIPCSERVER hServer) argument
562 PRTLOCALIPCSERVERINT pThis = (PRTLOCALIPCSERVERINT)hServer;
/vbox/src/VBox/Main/src-client/
H A DConsoleImplTeleporter.cpp1066 PRTTCPSERVER hServer; local
1068 vrc = RTTcpServerCreateEx(pszAddress, uPort, &hServer);
1074 vrc = RTTcpServerCreateEx(pszAddress, uPort, &hServer);
1083 RTTcpServerDestroy(hServer);
1095 vrc = RTTimerLRCreateEx(&hTimerLR, 0 /*ns*/, RTTIMER_FLAGS_CPU_ANY, teleporterDstTimeout, hServer);
1106 theState.mhServer = hServer;
1115 vrc = RTTcpServerListen(hServer, Console::i_teleporterTrgServeConnection, &theState);
1172 RTTcpServerDestroy(hServer);
H A DConsoleVRDPServer.cpp3030 HVRDESERVER hServer = mhServer; local
3052 if (mpEntryPoints && hServer)
3054 mpEntryPoints->VRDEDestroy(hServer);
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp124 static DECLCALLBACK(void) VRDEDestroy(HVRDESERVER hServer);
125 static DECLCALLBACK(int) VRDEEnableConnections(HVRDESERVER hServer, bool fEnable);
126 static DECLCALLBACK(void) VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId, bool fReconnect);
127 static DECLCALLBACK(void) VRDEResize(HVRDESERVER hServer);
128 static DECLCALLBACK(void) VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, void *pvUpdate,uint32_t cbUpdate);
129 static DECLCALLBACK(void) VRDEColorPointer(HVRDESERVER hServer, const VRDECOLORPOINTER *pPointer);
130 static DECLCALLBACK(void) VRDEHidePointer(HVRDESERVER hServer);
131 static DECLCALLBACK(void) VRDEAudioSamples(HVRDESERVER hServer, const void *pvSamples, uint32_t cSamples, VRDEAUDIOFORMAT format);
132 static DECLCALLBACK(void) VRDEAudioVolume(HVRDESERVER hServer, uint16_t u16Left, uint16_t u16Right);
133 static DECLCALLBACK(void) VRDEUSBRequest(HVRDESERVER hServer,
191 VRDEDestroy(HVRDESERVER hServer) argument
253 VRDEEnableConnections(HVRDESERVER hServer, bool fEnable) argument
696 VRDEDisconnect(HVRDESERVER hServer, uint32_t u32ClientId, bool fReconnect) argument
726 VRDEResize(HVRDESERVER hServer) argument
784 VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, void *pvUpdate,uint32_t cbUpdate) argument
871 VRDEColorPointer(HVRDESERVER hServer, const VRDECOLORPOINTER *pPointer) argument
925 VRDEHidePointer(HVRDESERVER hServer) argument
943 VRDEAudioSamples(HVRDESERVER hServer, const void *pvSamples, uint32_t cSamples, VRDEAUDIOFORMAT format) argument
959 VRDEAudioVolume(HVRDESERVER hServer, uint16_t u16Left, uint16_t u16Right) argument
978 VRDEUSBRequest(HVRDESERVER hServer, uint32_t u32ClientId, void *pvParm, uint32_t cbParm) argument
1001 VRDEClipboard(HVRDESERVER hServer, uint32_t u32Function, uint32_t u32Format, void *pvData, uint32_t cbData, uint32_t *pcbActualRead) argument
1023 VRDEQueryInfo(HVRDESERVER hServer, uint32_t index, void *pvBuffer, uint32_t cbBuffer, uint32_t *pcbOut) argument
1066 VRDERedirect(HVRDESERVER hServer, uint32_t u32ClientId, const char *pszServer, const char *pszUser, const char *pszDomain, const char *pszPassword, uint32_t u32SessionId, const char *pszCookie) argument
1088 VRDEAudioInOpen(HVRDESERVER hServer, void *pvCtx, uint32_t u32ClientId, VRDEAUDIOFORMAT audioFormat, uint32_t u32SamplesPerBlock) argument
1104 VRDEAudioInClose(HVRDESERVER hServer, uint32_t u32ClientId) argument
[all...]
/vbox/include/VBox/
H A DVBoxVideo.h1569 typedef DECLCALLBACK(int) FNVBOXCRCON_SVR_CRCMD(HVBOXCRCON_SERVER hServer, PVBOXVDMACMD_CHROMIUM_CMD pCmd, uint32_t cbCmd);
1573 typedef DECLCALLBACK(int) FNVBOXCRCON_SVR_CRCTL(HVBOXCRCON_SERVER hServer, PVBOXVDMACMD_CHROMIUM_CTL pCtl, uint32_t cbCmd);
1585 typedef DECLCALLBACK(int) FNVBOXCRCON_SVR_3DRGN_GET(HVBOXCRCON_SERVER hServer, HVBOXCRCON_3DRGN_CLIENT hRgnClient, uint32_t idScreen);
1621 HVBOXCRCON_SERVER hServer; member in struct:VBOXCRCON_SERVER_CALLBACKS

Completed in 90 milliseconds