Lines Matching refs:service
18 #include <service.h>
34 static const char *GetName(Service *service);
35 static BOOL Initialize(Service *service, Identity identity);
36 static BOOL MessageHandle(Service *service, Request *request);
37 static TaskConfig GetTaskConfig(Service *service);
47 static const char *GetName(Service *service)
49 (void)service;
53 static BOOL Initialize(Service *service, Identity identity)
55 if (service == NULL) {
56 POWER_HILOGE("Invalid service");
59 PowerMgrService *pms = (PowerMgrService *)(service);
64 static BOOL MessageHandle(Service *service, Request *request)
66 (void)service;
70 static TaskConfig GetTaskConfig(Service *service)
72 (void)service;
80 POWER_HILOGI("Succeed to init power manager service");