Home | History | Annotate | Download | only in keychain

Lines Matching refs:intent

23 import android.content.Intent;
416 @Override public IBinder onBind(Intent intent) {
417 if (IKeyChainService.class.getName().equals(intent.getAction())) {
424 protected void onHandleIntent(final Intent intent) {
425 if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
459 Intent intent = new Intent(KeyChain.ACTION_STORAGE_CHANGED);
462 sendBroadcastAsUser(intent, UserHandle.of(UserHandle.myUserId()), null, opts.toBundle());
466 Intent intent = new Intent(KeyChain.ACTION_KEYCHAIN_CHANGED);
467 sendBroadcastAsUser(intent, UserHandle.of(UserHandle.myUserId()));
471 Intent intent = new Intent(KeyChain.ACTION_TRUST_STORE_CHANGED);
472 sendBroadcastAsUser(intent, UserHandle.of(UserHandle.myUserId()));
483 Intent intent = new Intent(KeyChain.ACTION_KEY_ACCESS_CHANGED);
484 intent.putExtra(KeyChain.EXTRA_KEY_ALIAS, alias);
485 intent.putExtra(KeyChain.EXTRA_KEY_ACCESSIBLE, access);
486 intent.setPackage(pckg);
487 sendBroadcastAsUser(intent, UserHandle.of(UserHandle.myUserId()));