Lines Matching refs:intent
21 import android.content.Intent;
24 /** Receives {@link Intent#ACTION_BOOT_COMPLETED} and {@link Intent#ACTION_SHUTDOWN} */
28 public void onReceive(Context context, Intent intent) {
30 if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
32 } else if (Intent.ACTION_SHUTDOWN.equals(intent.getAction())) {
35 throw Assert.createAssertionFailException("unexpected action: " + intent.getAction());