Home | History | Annotate | Download | only in service

Lines Matching defs:UtilityService

70 public class UtilityService extends IntentService {
71 private static final String TAG = UtilityService.class.getSimpleName();
83 return new IntentFilter(UtilityService.ACTION_LOCATION_UPDATED);
87 Intent intent = new Intent(context, UtilityService.class);
88 intent.setAction(UtilityService.ACTION_FAKE_UPDATE);
94 Intent intent = new Intent(context, UtilityService.class);
95 intent.setAction(UtilityService.ACTION_ADD_GEOFENCES);
100 Intent intent = new Intent(context, UtilityService.class);
101 intent.setAction(UtilityService.ACTION_REQUEST_LOCATION);
106 Intent intent = new Intent(context, UtilityService.class);
107 intent.setAction(UtilityService.ACTION_CLEAR_NOTIFICATION);
112 Intent intent = new Intent(context, UtilityService.class);
113 intent.setAction(UtilityService.ACTION_CLEAR_REMOTE_NOTIFICATIONS);
117 public UtilityService() {
216 Intent locationUpdatedIntent = new Intent(this, UtilityService.class);