Lines Matching refs:feature
24 const char *GetFeatureName(Feature *feature) in GetFeatureName() argument
26 (void)feature; in GetFeatureName()
30 void OnFeatureInitialize(Feature *feature, Service *parent, Identity identity) in OnFeatureInitialize() argument
32 (void)feature; in OnFeatureInitialize()
36 void OnFeatureStop(Feature *feature, Identity identity) in OnFeatureStop() argument
38 (void)feature; in OnFeatureStop()
42 BOOL OnFeatureMessage(Feature *feature, Request *request) in OnFeatureMessage() argument
44 return ((feature != NULL) && (request != NULL)) ? TRUE : FALSE; in OnFeatureMessage()
120 BatteryFeatureApi *feature = GetBatteryFeatureImpl(); in GInit() local
121 if (feature == NULL) { in GInit()
125 BOOL result = SAMGR_GetInstance()->RegisterFeature(BATTERY_SERVICE, (Feature *)feature); in GInit()
129 … = SAMGR_GetInstance()->RegisterFeatureApi(BATTERY_SERVICE, BATTERY_INNER, GET_IUNKNOWN(*feature)); in GInit()