Home
last modified time | relevance | path

Searched refs:userId (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/frameworks/base/core/java/com/android/internal/widget/
DLockPatternUtils.java175 public boolean isTrustUsuallyManaged(int userId) { in isTrustUsuallyManaged() argument
181 return getLockSettings().getBoolean(IS_TRUST_USUALLY_MANAGED, false, userId); in isTrustUsuallyManaged()
187 public void setTrustUsuallyManaged(boolean managed, int userId) { in setTrustUsuallyManaged() argument
189 getLockSettings().setBoolean(IS_TRUST_USUALLY_MANAGED, managed, userId); in setTrustUsuallyManaged()
195 public void userPresent(int userId) { in userPresent() argument
197 getLockSettings().userPresent(userId); in userPresent()
265 public int getRequestedMinimumPasswordLength(int userId) { in getRequestedMinimumPasswordLength() argument
266 return getDevicePolicyManager().getPasswordMinimumLength(null, userId); in getRequestedMinimumPasswordLength()
273 public int getRequestedPasswordQuality(int userId) { in getRequestedPasswordQuality() argument
274 return getDevicePolicyManager().getPasswordQuality(null, userId); in getRequestedPasswordQuality()
[all …]
DILockSettings.aidl25 void setBoolean(in String key, in boolean value, in int userId); in setBoolean() argument
26 void setLong(in String key, in long value, in int userId); in setLong() argument
27 void setString(in String key, in String value, in int userId); in setString() argument
28 boolean getBoolean(in String key, in boolean defaultValue, in int userId); in getBoolean() argument
29 long getLong(in String key, in long defaultValue, in int userId); in getLong() argument
30 String getString(in String key, in String defaultValue, in int userId); in getString() argument
31 …ntial(in String credential, int type, in String savedCredential, int requestedQuality, int userId); in setLockCredential() argument
32 void resetKeyStore(int userId); in resetKeyStore() argument
33 VerifyCredentialResponse checkCredential(in String credential, int type, int userId, in checkCredential() argument
35 …ifyCredentialResponse verifyCredential(in String credential, int type, long challenge, int userId); in verifyCredential() argument
[all …]
/frameworks/base/services/core/java/com/android/server/om/
DOverlayManagerServiceImpl.java148 mSettings.remove(oi.packageName, oi.userId); in updateOverlaysForUser()
164 void onUserRemoved(final int userId) { in onUserRemoved() argument
166 Slog.d(TAG, "onUserRemoved userId=" + userId); in onUserRemoved()
168 mSettings.removeUser(userId); in onUserRemoved()
171 void onTargetPackageAdded(@NonNull final String packageName, final int userId) { in onTargetPackageAdded() argument
173 Slog.d(TAG, "onTargetPackageAdded packageName=" + packageName + " userId=" + userId); in onTargetPackageAdded()
176 final PackageInfo targetPackage = mPackageManager.getPackageInfo(packageName, userId); in onTargetPackageAdded()
177 updateAllOverlaysForTarget(packageName, userId, targetPackage); in onTargetPackageAdded()
178 mListener.onOverlaysChanged(packageName, userId); in onTargetPackageAdded()
181 void onTargetPackageChanged(@NonNull final String packageName, final int userId) { in onTargetPackageChanged() argument
[all …]
DOverlayManagerService.java367 for (final int userId : userIds) { in onPackageAdded()
369 final PackageInfo pi = mPackageManager.getPackageInfo(packageName, userId, in onPackageAdded()
372 mPackageManager.cachePackageInfo(packageName, userId, pi); in onPackageAdded()
374 mImpl.onTargetPackageAdded(packageName, userId); in onPackageAdded()
376 mImpl.onOverlayPackageAdded(packageName, userId); in onPackageAdded()
385 for (int userId : userIds) { in onPackageChanged()
387 final PackageInfo pi = mPackageManager.getPackageInfo(packageName, userId, in onPackageChanged()
390 mPackageManager.cachePackageInfo(packageName, userId, pi); in onPackageChanged()
392 mImpl.onTargetPackageChanged(packageName, userId); in onPackageChanged()
394 mImpl.onOverlayPackageChanged(packageName, userId); in onPackageChanged()
[all …]
/frameworks/base/services/core/java/com/android/server/pm/
DPermissionsState.java173 public boolean isPermissionReviewRequired(int userId) { in isPermissionReviewRequired() argument
174 return mPermissionReviewRequired != null && mPermissionReviewRequired.get(userId); in isPermissionReviewRequired()
210 public int grantRuntimePermission(BasePermission permission, int userId) { in grantRuntimePermission() argument
211 enforceValidUserId(userId); in grantRuntimePermission()
212 if (userId == UserHandle.USER_ALL) { in grantRuntimePermission()
215 return grantPermission(permission, userId); in grantRuntimePermission()
227 public int revokeRuntimePermission(BasePermission permission, int userId) { in revokeRuntimePermission() argument
228 enforceValidUserId(userId); in revokeRuntimePermission()
229 if (userId == UserHandle.USER_ALL) { in revokeRuntimePermission()
232 return revokePermission(permission, userId); in revokeRuntimePermission()
[all …]
DPackageSettingBase.java285 private PackageUserState modifyUserState(int userId) { in modifyUserState() argument
286 PackageUserState state = userState.get(userId); in modifyUserState()
289 userState.put(userId, state); in modifyUserState()
294 public PackageUserState readUserState(int userId) { in readUserState() argument
295 PackageUserState state = userState.get(userId); in readUserState()
303 void setEnabled(int state, int userId, String callingPackage) { in setEnabled() argument
304 PackageUserState st = modifyUserState(userId); in setEnabled()
309 int getEnabled(int userId) { in getEnabled() argument
310 return readUserState(userId).enabled; in getEnabled()
313 String getLastDisabledAppCaller(int userId) { in getLastDisabledAppCaller() argument
[all …]
DDefaultPermissionGrantPolicy.java212 public void grantDefaultPermissions(int userId) { in grantDefaultPermissions() argument
214 grantAllRuntimePermissions(userId); in grantDefaultPermissions()
216 grantPermissionsToSysComponentsAndPrivApps(userId); in grantDefaultPermissions()
217 grantDefaultSystemHandlerPermissions(userId); in grantDefaultPermissions()
218 grantDefaultPermissionExceptions(userId); in grantDefaultPermissions()
222 private void grantRuntimePermissionsForPackageLocked(int userId, PackageParser.Package pkg) { in grantRuntimePermissionsForPackageLocked() argument
231 grantRuntimePermissionsLPw(pkg, permissions, true, userId); in grantRuntimePermissionsForPackageLocked()
235 private void grantAllRuntimePermissions(int userId) { in grantAllRuntimePermissions() argument
236 Log.i(TAG, "Granting all runtime permissions for user " + userId); in grantAllRuntimePermissions()
239 grantRuntimePermissionsForPackageLocked(userId, pkg); in grantAllRuntimePermissions()
[all …]
DUserDataPreparer.java67 void prepareUserData(int userId, int userSerial, int flags) { in prepareUserData() argument
72 prepareUserDataLI(volumeUuid, userId, userSerial, flags, true); in prepareUserData()
77 private void prepareUserDataLI(String volumeUuid, int userId, int userSerial, int flags, in prepareUserDataLI() argument
83 storage.prepareUserStorage(volumeUuid, userId, userSerial, flags); in prepareUserDataLI()
86 enforceSerialNumber(getDataUserDeDirectory(volumeUuid, userId), userSerial); in prepareUserDataLI()
88 enforceSerialNumber(getDataSystemDeDirectory(userId), userSerial); in prepareUserDataLI()
92 enforceSerialNumber(getDataUserCeDirectory(volumeUuid, userId), userSerial); in prepareUserDataLI()
94 enforceSerialNumber(getDataSystemCeDirectory(userId), userSerial); in prepareUserDataLI()
98 mInstaller.createUserData(volumeUuid, userId, userSerial, flags); in prepareUserDataLI()
100 logCriticalInfo(Log.WARN, "Destroying user " + userId + " on volume " + volumeUuid in prepareUserDataLI()
[all …]
DInstantAppRegistry.java135 @UserIdInt int userId) { in getInstantAppCookieLPw() argument
142 byte[] pendingCookie = mCookiePersistence.getPendingPersistCookieLPr(pkg, userId); in getInstantAppCookieLPw()
146 File cookieFile = peekInstantCookieFile(packageName, userId); in getInstantAppCookieLPw()
158 @Nullable byte[] cookie, @UserIdInt int userId) { in setInstantAppCookieLPw() argument
175 mCookiePersistence.schedulePersistLPw(userId, pkg, cookie); in setInstantAppCookieLPw()
180 @NonNull String packageName, @NonNull File cookieFile, @UserIdInt int userId) { in persistInstantApplicationCookie() argument
182 File appDir = getInstantApplicationDir(packageName, userId); in persistInstantApplicationCookie()
205 @UserIdInt int userId) { in getInstantAppIconLPw() argument
206 File iconFile = new File(getInstantApplicationDir(packageName, userId), in getInstantAppIconLPw()
215 @UserIdInt int userId) { in getInstantAppAndroidIdLPw() argument
[all …]
DShortcutService.java480 public String injectGetLocaleTagsForUser(@UserIdInt int userId) { in injectGetLocaleTagsForUser() argument
575 public void onUnlockUser(int userId) { in onUnlockUser() argument
576 mService.handleUnlockUser(userId); in onUnlockUser()
596 void handleUnlockUser(int userId) { in handleUnlockUser() argument
598 Slog.d(TAG, "handleUnlockUser: user=" + userId); in handleUnlockUser()
601 mUnlockedUsers.put(userId, true); in handleUnlockUser()
615 getUserShortcutsLocked(userId); in handleUnlockUser()
621 void handleStopUser(int userId) { in handleStopUser() argument
623 Slog.d(TAG, "handleStopUser: user=" + userId); in handleStopUser()
626 unloadUserLocked(userId); in handleStopUser()
[all …]
/frameworks/base/media/java/android/media/tv/
DITvInputManager.aidl43 List<TvInputInfo> getTvInputList(int userId); in getTvInputList() argument
44 TvInputInfo getTvInputInfo(in String inputId, int userId); in getTvInputInfo() argument
45 void updateTvInputInfo(in TvInputInfo inputInfo, int userId); in updateTvInputInfo() argument
46 int getTvInputState(in String inputId, int userId); in getTvInputState() argument
48 List<TvContentRatingSystemInfo> getTvContentRatingSystemList(int userId); in getTvContentRatingSystemList() argument
50 void registerCallback(in ITvInputManagerCallback callback, int userId); in registerCallback() argument
51 void unregisterCallback(in ITvInputManagerCallback callback, int userId); in unregisterCallback() argument
53 boolean isParentalControlsEnabled(int userId); in isParentalControlsEnabled() argument
54 void setParentalControlsEnabled(boolean enabled, int userId); in setParentalControlsEnabled() argument
55 boolean isRatingBlocked(in String rating, int userId); in isRatingBlocked() argument
[all …]
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java231 protected void handleStrongAuthRequiredChanged(int strongAuthFlags, int userId) { in handleStrongAuthRequiredChanged() argument
233 super.handleStrongAuthRequiredChanged(strongAuthFlags, userId); in handleStrongAuthRequiredChanged()
238 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() argument
240 return super.getStrongAuthForUser(userId); in getStrongAuthForUser()
423 private void maybeShowEncryptionNotificationForUser(@UserIdInt int userId) { in maybeShowEncryptionNotificationForUser() argument
424 final UserInfo user = mUserManager.getUserInfo(userId); in maybeShowEncryptionNotificationForUser()
433 final boolean isSecure = isUserSecure(userId); in maybeShowEncryptionNotificationForUser()
435 UserInfo parent = mUserManager.getProfileParent(userId); in maybeShowEncryptionNotificationForUser()
500 public void onCleanupUser(int userId) { in onCleanupUser() argument
501 hideEncryptionNotification(new UserHandle(userId)); in onCleanupUser()
[all …]
DLockSettingsStorage.java189 public void writeKeyValue(String key, String value, int userId) { in writeKeyValue() argument
190 writeKeyValue(mOpenHelper.getWritableDatabase(), key, value, userId); in writeKeyValue() local
193 public void writeKeyValue(SQLiteDatabase db, String key, String value, int userId) { in writeKeyValue() argument
196 cv.put(COLUMN_USERID, userId); in writeKeyValue()
202 new String[] {key, Integer.toString(userId)}); in writeKeyValue()
205 mCache.putKeyValue(key, value, userId); in writeKeyValue()
212 public String readKeyValue(String key, String defaultValue, int userId) { in readKeyValue() argument
215 if (mCache.hasKeyValue(key, userId)) { in readKeyValue()
216 return mCache.peekKeyValue(key, defaultValue, userId); in readKeyValue()
226 new String[] { Integer.toString(userId), key }, in readKeyValue()
[all …]
DSyntheticPasswordManager.java392 public void removeUser(int userId) { in removeUser() argument
395 userId)) { in removeUser()
396 destroyWeaverSlot(handle, userId); in removeUser()
401 public int getCredentialType(long handle, int userId) { in getCredentialType() argument
402 byte[] passwordData = loadState(PASSWORD_DATA_NAME, handle, userId); in getCredentialType()
404 Log.w(TAG, "getCredentialType: encountered empty password data for user " + userId); in getCredentialType()
433 byte[] hash, String credential, int userId) throws RemoteException { in newSyntheticPasswordAndSid() argument
437 response = gatekeeper.enroll(userId, hash, credential.getBytes(), in newSyntheticPasswordAndSid()
440 Log.w(TAG, "Fail to migrate SID, assuming no SID, user " + userId); in newSyntheticPasswordAndSid()
441 clearSidForUser(userId); in newSyntheticPasswordAndSid()
[all …]
DLockSettingsStrongAuth.java112 private void handleRequireStrongAuth(int strongAuthReason, int userId) { in handleRequireStrongAuth() argument
113 if (userId == UserHandle.USER_ALL) { in handleRequireStrongAuth()
119 handleRequireStrongAuthOneUser(strongAuthReason, userId); in handleRequireStrongAuth()
123 private void handleRequireStrongAuthOneUser(int strongAuthReason, int userId) { in handleRequireStrongAuthOneUser() argument
124 int oldValue = mStrongAuthForUser.get(userId, mDefaultStrongAuthFlags); in handleRequireStrongAuthOneUser()
129 mStrongAuthForUser.put(userId, newValue); in handleRequireStrongAuthOneUser()
130 notifyStrongAuthTrackers(newValue, userId); in handleRequireStrongAuthOneUser()
134 private void handleRemoveUser(int userId) { in handleRemoveUser() argument
135 int index = mStrongAuthForUser.indexOfKey(userId); in handleRemoveUser()
138 notifyStrongAuthTrackers(mDefaultStrongAuthFlags, userId); in handleRemoveUser()
[all …]
/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java181 int userId; field in TrustManagerService.AgentInfo
189 return component.equals(o.component) && userId == o.userId; in equals()
194 return component.hashCode() * 31 + userId; in hashCode()
205 public void updateTrust(int userId, int flags) { in updateTrust() argument
206 boolean managed = aggregateIsTrustManaged(userId); in updateTrust()
207 dispatchOnTrustManagedChanged(managed, userId); in updateTrust()
208 if (mStrongAuthTracker.isTrustAllowedForUser(userId) in updateTrust()
209 && isTrustUsuallyManagedInternal(userId) != managed) { in updateTrust()
210 updateTrustUsuallyManaged(userId, managed); in updateTrust()
212 boolean trusted = aggregateIsTrusted(userId); in updateTrust()
[all …]
DTrustArchive.java46 final int userId; field in TrustArchive.Event
58 private Event(int type, int userId, ComponentName agent, String message, in Event() argument
61 this.userId = userId; in Event()
73 public void logGrantTrust(int userId, ComponentName agent, String message, in logGrantTrust() argument
75 addEvent(new Event(TYPE_GRANT_TRUST, userId, agent, message, duration, in logGrantTrust()
79 public void logRevokeTrust(int userId, ComponentName agent) { in logRevokeTrust() argument
80 addEvent(new Event(TYPE_REVOKE_TRUST, userId, agent, null, 0, 0, false)); in logRevokeTrust()
83 public void logTrustTimeout(int userId, ComponentName agent) { in logTrustTimeout() argument
84 addEvent(new Event(TYPE_TRUST_TIMEOUT, userId, agent, null, 0, 0, false)); in logTrustTimeout()
87 public void logAgentDied(int userId, ComponentName agent) { in logAgentDied() argument
[all …]
/frameworks/base/core/java/android/content/pm/
DIPackageManager.aidl64 void checkPackageStartable(String packageName, int userId); in checkPackageStartable() argument
65 boolean isPackageAvailable(String packageName, int userId); in isPackageAvailable() argument
66 PackageInfo getPackageInfo(String packageName, int flags, int userId); in getPackageInfo() argument
68 int flags, int userId); in getPackageInfoVersioned() argument
69 int getPackageUid(String packageName, int flags, int userId); in getPackageUid() argument
70 int[] getPackageGids(String packageName, int flags, int userId); in getPackageGids() argument
83 ApplicationInfo getApplicationInfo(String packageName, int flags ,int userId); in getApplicationInfo() argument
85 ActivityInfo getActivityInfo(in ComponentName className, int flags, int userId); in getActivityInfo() argument
90 ActivityInfo getReceiverInfo(in ComponentName className, int flags, int userId); in getReceiverInfo() argument
92 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId); in getServiceInfo() argument
[all …]
DPackageManagerInternal.java47 public String[] getPackages(int userId); in getPackages() argument
61 public String[] getPackages(String authority, int userId); in getPackages() argument
105 public abstract void grantDefaultPermissionsToDefaultSmsApp(String packageName, int userId); in grantDefaultPermissionsToDefaultSmsApp() argument
112 public abstract void grantDefaultPermissionsToDefaultDialerApp(String packageName, int userId); in grantDefaultPermissionsToDefaultDialerApp() argument
120 int userId); in grantDefaultPermissionsToDefaultSimCallManager() argument
136 public abstract boolean isPermissionsReviewRequired(String packageName, int userId); in isPermissionsReviewRequired() argument
145 @PackageInfoFlags int flags, int filterCallingUid, int userId); in getPackageInfo() argument
154 @ApplicationInfoFlags int flags, int filterCallingUid, int userId); in getApplicationInfo() argument
163 @ComponentInfoFlags int flags, int filterCallingUid, int userId); in getActivityInfo() argument
172 @ResolveInfoFlags int flags, int filterCallingUid, int userId); in queryIntentActivities() argument
[all …]
DIShortcutService.aidl29 int userId); in setDynamicShortcuts() argument
31 ParceledListSlice getDynamicShortcuts(String packageName, int userId); in getDynamicShortcuts() argument
33 ParceledListSlice getManifestShortcuts(String packageName, int userId); in getManifestShortcuts() argument
36 int userId); in addDynamicShortcuts() argument
38 void removeDynamicShortcuts(String packageName, in List shortcutIds, int userId); in removeDynamicShortcuts() argument
40 void removeAllDynamicShortcuts(String packageName, int userId); in removeAllDynamicShortcuts() argument
42 ParceledListSlice getPinnedShortcuts(String packageName, int userId); in getPinnedShortcuts() argument
44 boolean updateShortcuts(String packageName, in ParceledListSlice shortcuts, int userId); in updateShortcuts() argument
47 in IntentSender resultIntent, int userId); in requestPinShortcut() argument
49 Intent createShortcutResultIntent(String packageName, in ShortcutInfo shortcut, int userId); in createShortcutResultIntent() argument
[all …]
/frameworks/base/core/java/android/print/
DIPrintManager.aidl40 List<PrintJobInfo> getPrintJobInfos(int appId, int userId); in getPrintJobInfos() argument
41 PrintJobInfo getPrintJobInfo(in PrintJobId printJobId, int appId, int userId); in getPrintJobInfo() argument
43 in PrintAttributes attributes, String packageName, int appId, int userId); in print() argument
44 void cancelPrintJob(in PrintJobId printJobId, int appId, int userId); in cancelPrintJob() argument
45 void restartPrintJob(in PrintJobId printJobId, int appId, int userId); in restartPrintJob() argument
48 int appId, int userId); in addPrintJobStateChangeListener() argument
50 int userId); in removePrintJobStateChangeListener() argument
61 int userId); in addPrintServicesChangeListener() argument
72 int userId); in removePrintServicesChangeListener() argument
82 List<PrintServiceInfo> getPrintServices(int selectionFlags, int userId); in getPrintServices() argument
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DUserController.java248 final int userId = uss.mHandle.getIdentifier(); in finishUserBoot() local
250 Slog.d(TAG, "Finishing user boot " + userId); in finishUserBoot()
253 if (mStartedUsers.get(userId) != uss) return; in finishUserBoot()
260 mInjector.getUserManagerInternal().setUserState(userId, uss.state); in finishUserBoot()
262 if (userId == UserHandle.USER_SYSTEM in finishUserBoot()
275 userId, 0)); in finishUserBoot()
277 intent.putExtra(Intent.EXTRA_USER_HANDLE, userId); in finishUserBoot()
282 AppOpsManager.OP_NONE, null, true, false, MY_PID, SYSTEM_UID, userId); in finishUserBoot()
287 if (mInjector.getUserManager().isManagedProfile(userId)) { in finishUserBoot()
288 final UserInfo parent = mInjector.getUserManager().getProfileParent(userId); in finishUserBoot()
[all …]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
DRestrictedLockUtils.java77 String userRestriction, int userId) { in checkIfRestrictionEnforced() argument
86 um.getUserRestrictionSources(userRestriction, UserHandle.of(userId)); in checkIfRestrictionEnforced()
100 if (adminUserId == userId) { in checkIfRestrictionEnforced()
106 return (parentUser != null && parentUser.id == userId) in checkIfRestrictionEnforced()
113 return adminUserId == userId in checkIfRestrictionEnforced()
122 String userRestriction, int userId) { in hasBaseUserRestriction() argument
124 return um.hasBaseUserRestriction(userRestriction, UserHandle.of(userId)); in hasBaseUserRestriction()
143 int keyguardFeatures, final @UserIdInt int userId) { in checkIfKeyguardFeaturesDisabled() argument
146 if (checkUser != userId) { in checkIfKeyguardFeaturesDisabled()
151 if (UserManager.get(context).getUserInfo(userId).isManagedProfile()) { in checkIfKeyguardFeaturesDisabled()
[all …]
/frameworks/base/core/java/android/os/
DUserManagerInternal.java38 void onUserRestrictionsChanged(int userId, Bundle newRestrictions, Bundle prevRestrictions); in onUserRestrictionsChanged() argument
52 public abstract void setDevicePolicyUserRestrictions(int userId, @Nullable Bundle restrictions, in setDevicePolicyUserRestrictions() argument
61 public abstract Bundle getBaseUserRestrictions(int userId); in getBaseUserRestrictions() argument
67 public abstract void setBaseUserRestrictionsByDpmsForMigration(int userId, in setBaseUserRestrictionsByDpmsForMigration() argument
71 public abstract boolean getUserRestriction(int userId, String key); in getUserRestriction() argument
89 public abstract void setUserManaged(int userId, boolean isManaged); in setUserManaged() argument
98 public abstract void setUserIcon(int userId, Bitmap bitmap); in setUserIcon() argument
124 public abstract void onEphemeralUserStop(int userId); in onEphemeralUserStop() argument
141 public abstract boolean removeUserEvenWhenDisallowed(int userId); in removeUserEvenWhenDisallowed() argument
148 public abstract boolean isUserUnlockingOrUnlocked(int userId); in isUserUnlockingOrUnlocked() argument
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/
DAutofillManagerService.java159 final int userId = users.get(i).id; in AutofillManagerService() local
160 final boolean disabled = umi.getUserRestriction(userId, UserManager.DISALLOW_AUTOFILL); in AutofillManagerService()
163 Slog.i(TAG, "Disabling Autofill for user " + userId); in AutofillManagerService()
165 mDisabledUsers.put(userId, disabled); in AutofillManagerService()
168 umi.addUserRestrictionsListener((userId, newRestrictions, prevRestrictions) -> { in AutofillManagerService() argument
172 final boolean disabledBefore = mDisabledUsers.get(userId); in AutofillManagerService()
176 Slog.d(TAG, "Autofill restriction did not change for user " + userId + ": " in AutofillManagerService()
181 Slog.i(TAG, "Updating Autofill for user " + userId + ": disabled=" + disabledNow); in AutofillManagerService()
182 mDisabledUsers.put(userId, disabledNow); in AutofillManagerService()
183 updateCachedServiceLocked(userId, disabledNow); in AutofillManagerService()
[all …]

12345678910>>...22