HomeSort by relevance Sort by last modified time
    Searched refs:userId (Results 1 - 25 of 306) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
IStopUserCallback.aidl 25 void userStopped(int userId);
26 void userStopAborted(int userId);
  /frameworks/base/core/java/android/accounts/
AccountAndUser.java 20 * Used to store the Account and the UserId this account is associated with.
26 public int userId;
28 public AccountAndUser(Account account, int userId) {
30 this.userId = userId;
38 && this.userId == other.userId;
43 return account.hashCode() + userId;
47 return account.toString() + " u" + userId;
  /frameworks/base/core/java/com/android/server/
WidgetBackupProvider.java 29 public List<String> getWidgetParticipants(int userId);
30 public byte[] getWidgetState(String packageName, int userId);
31 public void restoreStarting(int userId);
32 public void restoreWidgetState(String packageName, byte[] restoredState, int userId);
33 public void restoreFinished(int userId);
AppWidgetBackupBridge.java 34 public static List<String> getWidgetParticipants(int userId) {
36 ? sAppWidgetService.getWidgetParticipants(userId)
40 public static byte[] getWidgetState(String packageName, int userId) {
42 ? sAppWidgetService.getWidgetState(packageName, userId)
46 public static void restoreStarting(int userId) {
48 sAppWidgetService.restoreStarting(userId);
52 public static void restoreWidgetState(String packageName, byte[] restoredState, int userId) {
54 sAppWidgetService.restoreWidgetState(packageName, restoredState, userId);
58 public static void restoreFinished(int userId) {
60 sAppWidgetService.restoreFinished(userId);
    [all...]
  /frameworks/base/core/java/android/app/trust/
ITrustListener.aidl 25 void onTrustChanged(boolean enabled, int userId, boolean initiatedByUser);
26 void onTrustManagedChanged(boolean managed, int userId);
ITrustManager.aidl 27 void reportUnlockAttempt(boolean successful, int userId);
28 void reportEnabledTrustAgentsChanged(int userId);
29 void reportRequireCredentialEntry(int userId);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtilsCache.java 67 public void setBoolean(String key, boolean value, int userId) throws RemoteException {
68 invalidateCache(key, userId);
69 mService.setBoolean(key, value, userId);
70 putCache(key, userId, value);
73 public void setLong(String key, long value, int userId) throws RemoteException {
74 invalidateCache(key, userId);
75 mService.setLong(key, value, userId);
76 putCache(key, userId, value);
79 public void setString(String key, String value, int userId) throws RemoteException {
80 invalidateCache(key, userId);
    [all...]
ILockSettings.aidl 23 void setBoolean(in String key, in boolean value, in int userId);
24 void setLong(in String key, in long value, in int userId);
25 void setString(in String key, in String value, in int userId);
26 boolean getBoolean(in String key, in boolean defaultValue, in int userId);
27 long getLong(in String key, in long defaultValue, in int userId);
28 String getString(in String key, in String defaultValue, in int userId);
29 void setLockPattern(in String pattern, int userId);
30 boolean checkPattern(in String pattern, int userId);
31 void setLockPassword(in String password, int userId);
32 boolean checkPassword(in String password, int userId);
    [all...]
ILockSettingsObserver.aidl 21 void onLockSettingChanged(in String key, in int userId);
  /frameworks/base/core/java/android/service/fingerprint/
IFingerprintService.aidl 27 void enroll(IBinder token, long timeout, int userId);
30 void enrollCancel(IBinder token, int userId);
33 void remove(IBinder token, int fingerprintId, int userId);
37 void startListening(IBinder token, IFingerprintServiceReceiver receiver, int userId);
40 void stopListening(IBinder token, int userId);
  /frameworks/base/media/java/android/media/tv/
ITvInputManager.aidl 39 List<TvInputInfo> getTvInputList(int userId);
40 TvInputInfo getTvInputInfo(in String inputId, int userId);
42 List<TvContentRatingSystemInfo> getTvContentRatingSystemList(int userId);
44 void registerCallback(in ITvInputManagerCallback callback, int userId);
45 void unregisterCallback(in ITvInputManagerCallback callback, int userId);
47 boolean isParentalControlsEnabled(int userId);
48 void setParentalControlsEnabled(boolean enabled, int userId);
49 boolean isRatingBlocked(in String rating, int userId);
50 List<String> getBlockedRatings(int userId);
51 void addBlockedRating(in String rating, int userId);
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
MultiUserAvatarCache.java 40 public void clear(int userId) {
41 mCache.remove(userId);
44 public Drawable get(int userId) {
45 return mCache.get(userId);
48 public void put(int userId, Drawable image) {
49 mCache.put(userId, image);
KeyguardUpdateMonitorCallback.java 115 public void onUserSwitching(int userId) { }
120 public void onUserSwitchComplete(int userId) { }
131 public void onUserRemoved(int userId) { }
136 public void onUserInfoChanged(int userId) { }
174 public void onTrustChanged(int userId) { }
179 public void onTrustManagedChanged(int userId) { }
184 public void onTrustInitiatedByUser(int userId) { }
188 * @param userId
190 public void onFingerprintRecognized(int userId) { }
200 public void onFaceUnlockStateChanged(boolean running, int userId) { }
    [all...]
  /frameworks/base/core/java/android/print/
IPrintManager.aidl 35 List<PrintJobInfo> getPrintJobInfos(int appId, int userId);
36 PrintJobInfo getPrintJobInfo(in PrintJobId printJobId, int appId, int userId);
38 in PrintAttributes attributes, String packageName, int appId, int userId);
39 void cancelPrintJob(in PrintJobId printJobId, int appId, int userId);
40 void restartPrintJob(in PrintJobId printJobId, int appId, int userId);
43 int appId, int userId);
45 int userId);
47 List<PrintServiceInfo> getInstalledPrintServices(int userId);
48 List<PrintServiceInfo> getEnabledPrintServices(int userId);
50 void createPrinterDiscoverySession(in IPrinterDiscoveryObserver observer, int userId);
    [all...]
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCacheListener.java 29 void onServiceChanged(V type, int userId, boolean removed);
PackageCleanItem.java 24 public final int userId;
28 public PackageCleanItem(int userId, String packageName, boolean andCode) {
29 this.userId = userId;
42 return userId == other.userId && packageName.equals(other.packageName)
53 result = 31 * result + userId;
64 dest.writeInt(userId);
81 userId = source.readInt();
IPackageInstaller.aidl 30 int createSession(in PackageInstaller.SessionParams params, String installerPackageName, int userId);
41 ParceledListSlice getAllSessions(int userId);
42 ParceledListSlice getMySessions(String installerPackageName, int userId);
44 void registerCallback(IPackageInstallerCallback callback, int userId);
47 void uninstall(String packageName, int flags, in IntentSender statusReceiver, int userId);
  /frameworks/base/services/core/java/com/android/server/trust/
TrustArchive.java 44 final int userId;
56 private Event(int type, int userId, ComponentName agent, String message,
59 this.userId = userId;
71 public void logGrantTrust(int userId, ComponentName agent, String message,
73 addEvent(new Event(TYPE_GRANT_TRUST, userId, agent, message, duration,
77 public void logRevokeTrust(int userId, ComponentName agent) {
78 addEvent(new Event(TYPE_REVOKE_TRUST, userId, agent, null, 0, false, false));
81 public void logTrustTimeout(int userId, ComponentName agent) {
82 addEvent(new Event(TYPE_TRUST_TIMEOUT, userId, agent, null, 0, false, false))
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ICall.java 33 * @param userId the remote user identity
36 public boolean checkIfRemoteUserIsSame(String userId);
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSettingBase.java 224 private PackageUserState modifyUserState(int userId) {
225 PackageUserState state = userState.get(userId);
228 userState.put(userId, state);
233 public PackageUserState readUserState(int userId) {
234 PackageUserState state = userState.get(userId);
241 void setEnabled(int state, int userId, String callingPackage) {
242 PackageUserState st = modifyUserState(userId);
247 int getEnabled(int userId) {
248 return readUserState(userId).enabled;
251 String getLastDisabledAppCaller(int userId) {
    [all...]
  /frameworks/base/core/java/android/app/usage/
UsageStatsManagerInternal.java 33 * @param userId The user id to which the component belongs to.
37 public abstract void reportEvent(ComponentName component, int userId, int eventType);
44 public abstract void reportConfigurationChange(Configuration config, int userId);
  /frameworks/base/core/java/android/database/
IContentObserver.aidl 32 oneway void onChange(boolean selfUpdate, in Uri uri, int userId);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerInternal.java 23 String tag, int id, Notification notification, int[] idReceived, int userId);
25 void removeForegroundServiceFlagFromNotification(String pkg, int notificationId, int userId);
  /system/core/libcutils/
multiuser.c 27 uid_t multiuser_get_uid(userid_t userId, appid_t appId) {
28 return userId * MULTIUSER_APP_PER_USER_RANGE + (appId % MULTIUSER_APP_PER_USER_RANGE);
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
CardEmulationManager.java 93 public void onUserSwitched(int userId) {
94 mServiceCache.invalidateCache(userId);
95 mPreferredServices.onUserSwitched(userId);
114 public void onServicesUpdated(int userId, List<ApduServiceInfo> services) {
116 verifyDefaults(userId, services);
118 mAidCache.onServicesUpdated(userId, services);
123 void verifyDefaults(int userId, List<ApduServiceInfo> services) {
125 getDefaultServiceForCategory(userId, CardEmulation.CATEGORY_PAYMENT, false);
129 ApduServiceInfo serviceInfo = mServiceCache.getService(userId, defaultPaymentService);
149 setDefaultServiceForCategoryChecked(userId, null, CardEmulation.CATEGORY_PAYMENT)
    [all...]

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>