Searched defs:u32Handle (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DHGCMObjects.cpp177 uint32_t hgcmObjAssignHandle (HGCMObject *pObject, uint32_t u32Handle) argument
179 return hgcmObjMake (pObject, u32Handle);
H A DRemoteUSBBackend.cpp84 uint32_t u32Handle; /* The handle of the URB. Generated by the Remote USB backend. */ member in struct:_REMOTEUSBQURB
489 parm.handle = pRemoteURB->u32Handle;
542 uint32_t u32Handle = 0; local
583 u32Handle = pDevice->hURB++;
584 if (u32Handle == 0)
586 u32Handle = pDevice->hURB++;
589 LogFlow(("RemoteUSBBackend::iface_QueueURB: handle = %d\n", u32Handle));
591 parm.handle = u32Handle;
630 qurb->u32Handle = u32Handle;
[all...]
/vbox/src/VBox/HostServices/HostChannel/
H A Dservice.cpp259 uint32_t u32Handle = 0; local
262 rc = vboxHostChannelAttach(pClient, &u32Handle, (const char *)pvName, u32Flags);
266 VBoxHGCMParmUInt32Set(&paParms[2], u32Handle);
288 uint32_t u32Handle; local
290 rc = VBoxHGCMParmUInt32Get(&paParms[0], &u32Handle);
294 rc = vboxHostChannelDetach(pClient, u32Handle);
315 uint32_t u32Handle; local
319 rc = VBoxHGCMParmUInt32Get (&paParms[0], &u32Handle);
327 rc = vboxHostChannelSend(pClient, u32Handle, pvData, cbData);
351 uint32_t u32Handle; local
399 uint32_t u32Handle; local
[all...]
H A DHostChannel.cpp57 uint32_t u32Handle; /* handle assigned to the channel by the service. */ member in struct:VBOXHOSTCHINSTANCE
190 uint32_t u32Handle = ASMAtomicIncU32(&pClient->u32HandleSrc); local
192 if (u32Handle == 0)
207 if (pIter->u32Handle == u32Handle)
216 *pu32Handle = u32Handle;
264 rc = vhcHandleCreate(pClient, &pInstance->u32Handle);
294 static VBOXHOSTCHINSTANCE *vhcInstanceFind(VBOXHOSTCHCLIENT *pClient, uint32_t u32Handle) argument
306 && pIter->u32Handle == u32Handle)
616 vboxHostChannelDetach(VBOXHOSTCHCLIENT *pClient, uint32_t u32Handle) argument
639 vboxHostChannelSend(VBOXHOSTCHCLIENT *pClient, uint32_t u32Handle, const void *pvData, uint32_t cbData) argument
667 vboxHostChannelRecv(VBOXHOSTCHCLIENT *pClient, uint32_t u32Handle, void *pvData, uint32_t cbData, uint32_t *pu32SizeReceived, uint32_t *pu32SizeRemaining) argument
701 vboxHostChannelControl(VBOXHOSTCHCLIENT *pClient, uint32_t u32Handle, uint32_t u32Code, void *pvParm, uint32_t cbParm, void *pvData, uint32_t cbData, uint32_t *pu32SizeDataReturned) argument
[all...]

Completed in 74 milliseconds