Lines Matching defs:Service

3  * Guest Property Service: Host service entry points.
18 /** @page pg_svc_guest_properties Guest Property HGCM Service
162 class Service : public RTCNonCopyable
166 typedef Service SELF;
279 explicit Service(PVBOXHGCMSVCHELPERS pHelpers)
406 uint64_t Service::getCurrentTimestamp(void)
430 int Service::validateName(const char *pszName, uint32_t cbName)
453 int Service::validateValue(const char *pszValue, uint32_t cbValue)
475 int Service::setPropertyBlock(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
565 int Service::getProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
642 int Service::setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool isGuest)
756 int Service::delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool isGuest)
809 * Enumeration data shared between enumPropsCallback and Service::enumProps.
884 int Service::enumProps(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
951 int Service::getOldNotificationInternal(const char *pszPatterns,
981 int Service::getNotificationWriteOut(uint32_t cParms, VBOXHGCMSVCPARM paParms[], Property prop)
1030 int Service::getNotification(uint32_t u32ClientId, VBOXHGCMCALLHANDLE callHandle,
1117 int Service::doNotifications(const char *pszProperty, uint64_t u64Timestamp)
1217 int Service::notifyHost(const char *pszName, const char *pszValue,
1245 void Service::call (VBOXHGCMCALLHANDLE callHandle, uint32_t u32ClientID,
1309 * Enumeration data shared between dbgInfoCallback and Service::dbgInfoShow.
1334 void Service::dbgInfoShow(PCDBGFINFOHLP pHlp)
1347 void Service::dbgInfo(void *pvUser, PCDBGFINFOHLP pHlp, const char *pszArgs)
1355 * Service call handler for the host.
1359 int Service::hostCall (uint32_t eFunction, uint32_t cParms, VBOXHGCMSVCPARM paParms[])
1441 int Service::uninit()
1448 using guestProp::Service;
1470 Service *pService = NULL;
1474 pService = new Service(ptable->pHelpers);
1491 ptable->pfnUnload = Service::svcUnload;
1492 ptable->pfnConnect = Service::svcConnectDisconnect;
1493 ptable->pfnDisconnect = Service::svcConnectDisconnect;
1494 ptable->pfnCall = Service::svcCall;
1495 ptable->pfnHostCall = Service::svcHostCall;
1498 ptable->pfnRegisterExtension = Service::svcRegisterExtension;
1500 /* Service specific initialization. */