Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java1277 final Intent lockIntent = new Intent(Intent.ACTION_DEVICE_LOCKED_CHANGED);
1278 lockIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
1279 lockIntent.putExtra(Intent.EXTRA_USER_HANDLE, userId);
1280 mContext.sendBroadcastAsUser(lockIntent, UserHandle.SYSTEM,
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java1196 Intent lockIntent = new Intent(DELAYED_LOCK_PROFILE_ACTION); in doKeyguardLaterForChildProfilesLocked() local
1197 lockIntent.putExtra("seq", mDelayedProfileShowingSequence); in doKeyguardLaterForChildProfilesLocked()
1198 lockIntent.putExtra(Intent.EXTRA_USER_ID, profileId); in doKeyguardLaterForChildProfilesLocked()
1199 lockIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); in doKeyguardLaterForChildProfilesLocked()
1201 …mContext, 0, lockIntent, PendingIntent.FLAG_CANCEL_CURRENT | PendingIntent.FLAG_MUTABLE_UNAUDITED); in doKeyguardLaterForChildProfilesLocked()