Home | History | Annotate | Download | only in presence

Lines Matching refs:intent

32 import android.content.Intent;
52 Intent intent = new Intent(context, PollingService.class);
53 return (context.startService(intent) != null);
64 Intent intent = new Intent(context, PollingService.class);
65 return context.stopService(intent);
71 Intent intent = new Intent(context, EABService.class);
72 return (context.startService(intent) != null);
78 Intent intent = new Intent(context, EABService.class);
79 return context.stopService(intent);