Lines Matching refs:serviceName
37 static BOOL RegisterFeature(const char *serviceName, Feature *feature);
38 static Feature *UnregisterFeature(const char *serviceName, const char *featureName);
39 static BOOL RegisterFeatureApi(const char *serviceName, const char *feature, IUnknown *publicApi);
40 static IUnknown *UnregisterFeatureApi(const char *serviceName, const char *feature);
41 static BOOL RegisterDefaultFeatureApi(const char *serviceName, IUnknown *publicApi);
42 static IUnknown *UnregisterDefaultFeatureApi(const char *serviceName);
43 static IUnknown *GetDefaultFeatureApi(const char *serviceName);
44 static IUnknown *GetFeatureApi(const char *serviceName, const char *feature);
49 static IUnknown *GetRemoteDefaultFeatureApi(char *deviceId, const char *serviceName);
278 static BOOL RegisterFeature(const char *serviceName, Feature *feature) in RegisterFeature() argument
284 ServiceImpl *serviceImpl = GetService(serviceName); in RegisterFeature()
300 static Feature *UnregisterFeature(const char *serviceName, const char *featureName) in UnregisterFeature() argument
302 ServiceImpl *serviceImpl = GetService(serviceName); in UnregisterFeature()
309 static BOOL RegisterFeatureApi(const char *serviceName, const char *feature, IUnknown *publicApi) in RegisterFeatureApi() argument
315 ServiceImpl *serviceImpl = GetService(serviceName); in RegisterFeatureApi()
335 static IUnknown *UnregisterFeatureApi(const char *serviceName, const char *feature) in UnregisterFeatureApi() argument
337 ServiceImpl *serviceImpl = GetService(serviceName); in UnregisterFeatureApi()
351 static BOOL RegisterDefaultFeatureApi(const char *serviceName, IUnknown *publicApi) in RegisterDefaultFeatureApi() argument
353 return RegisterFeatureApi(serviceName, NULL, publicApi); in RegisterDefaultFeatureApi()
356 static IUnknown *UnregisterDefaultFeatureApi(const char *serviceName) in UnregisterDefaultFeatureApi() argument
358 return UnregisterFeatureApi(serviceName, NULL); in UnregisterDefaultFeatureApi()
361 static IUnknown *GetDefaultFeatureApi(const char *serviceName) in GetDefaultFeatureApi() argument
363 return GetFeatureApi(serviceName, NULL); in GetDefaultFeatureApi()
390 static IUnknown *GetFeatureApi(const char *serviceName, const char *feature) in GetFeatureApi() argument
392 ServiceImpl *serviceImpl = GetService(serviceName); in GetFeatureApi()
394 return SAMGR_FindServiceApi(serviceName, feature); in GetFeatureApi()
574 static IUnknown *GetRemoteDefaultFeatureApi(char *deviceId, const char *serviceName) in GetRemoteDefaultFeatureApi() argument
576 return SAMGR_CreateIRemoteProxy(deviceId, serviceName, NULL); in GetRemoteDefaultFeatureApi()