Home
last modified time | relevance | path

Searched refs:lockIntent (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java959 Intent lockIntent = new Intent(DELAYED_LOCK_PROFILE_ACTION); in doKeyguardLaterForChildProfilesLocked() local
960 lockIntent.putExtra("seq", mDelayedProfileShowingSequence); in doKeyguardLaterForChildProfilesLocked()
961 lockIntent.putExtra(Intent.EXTRA_USER_ID, profileId); in doKeyguardLaterForChildProfilesLocked()
962 lockIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); in doKeyguardLaterForChildProfilesLocked()
964 mContext, 0, lockIntent, PendingIntent.FLAG_CANCEL_CURRENT); in doKeyguardLaterForChildProfilesLocked()
/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java1261 final Intent lockIntent = new Intent(Intent.ACTION_DEVICE_LOCKED_CHANGED);
1262 lockIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1263 lockIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1264 mContext.sendBroadcastAsUser(lockIntent, UserHandle.SYSTEM,