Home | History | Annotate | Download | only in notification

Lines Matching defs:userHandle

30 import android.os.UserHandle;
117 mObserver, UserHandle.USER_ALL);
130 if (record.getUserId() == UserHandle.USER_ALL) {
158 public float getContactAffinity(UserHandle userHandle, Bundle extras, int timeoutMs,
160 if (DEBUG) Slog.d(TAG, "checking affinity for " + userHandle);
164 Context context = getContextAsUser(userHandle);
201 private Context getContextAsUser(UserHandle userHandle) {
202 Context context = mUserToContextMap.get(userHandle.getIdentifier());
205 context = mBaseContext.createPackageContextAsUser("android", 0, userHandle);
206 mUserToContextMap.put(userHandle.getIdentifier(), context);