OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unlockIntent
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/core/java/com/android/server/
LockSettingsService.java
334
final Intent
unlockIntent
= km.createConfirmDeviceCredentialIntent(null, null, user.getIdentifier());
335
if (
unlockIntent
== null) {
338
unlockIntent
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
339
PendingIntent intent = PendingIntent.getActivity(mContext, 0,
unlockIntent
,
[
all
...]
/frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java
791
final Intent
unlockIntent
= km.createConfirmDeviceCredentialIntent(null, null,
793
if (
unlockIntent
== null) {
813
unlockIntent
.putExtra(Intent.EXTRA_INTENT, pendingIntent.getIntentSender());
814
unlockIntent
.setFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
815
mContext.startActivity(
unlockIntent
);
[
all
...]
Completed in 56 milliseconds