HomeSort by relevance Sort by last modified time
    Searched defs:userId (Results 176 - 200 of 340) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fwpmtypes.h 229 SID *userId;
471 SID *userId;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-io/2.0.5/
plexus-io-2.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-io/2.0.4/
plexus-io-2.0.4.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-io/2.0.6/
plexus-io-2.0.6.jar 
  /frameworks/base/core/java/android/app/
ActivityManager.java     [all...]
ActivityManagerNative.java 100 static public void broadcastStickyIntent(Intent intent, String permission, int userId) {
101 broadcastStickyIntent(intent, permission, AppOpsManager.OP_NONE, userId);
109 int userId) {
113 null /*permission*/, appOp, null, false, true, userId);
188 int userId = data.readInt();
190 resultTo, resultWho, requestCode, startFlags, profilerInfo, options, userId);
213 int userId = data.readInt();
216 ignoreTargetSecurity, userId);
238 int userId = data.readInt();
240 resultTo, resultWho, requestCode, startFlags, profilerInfo, options, userId);
2111 int userid = data.readInt(); local
2120 int userid = data.readInt(); local
2142 int userid = data.readInt(); local
2162 int userid = data.readInt(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 786 final int userId = getUserId();
794 final String packageName = pm.getDefaultBrowserPackageNameAsUser(userId);
796 pm.setDefaultBrowserPackageNameAsUser(ri.activityInfo.packageName, userId);
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitor.java 327 public void onTrustChanged(boolean enabled, int userId, int flags) {
328 mUserHasTrust.put(userId, enabled);
332 cb.onTrustChanged(userId);
334 cb.onTrustGrantedWithFlags(flags, userId);
407 public void onTrustManagedChanged(boolean managed, int userId) {
408 mUserTrustIsManaged.put(userId, managed);
413 cb.onTrustManagedChanged(userId);
418 private void onFingerprintAuthenticated(int userId) {
420 mUserFingerprintAuthenticated.put(userId, true);
429 cb.onFingerprintAuthenticated(userId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AppOpsService.java     [all...]
AlarmManagerService.java     [all...]
DeviceIdleController.java     [all...]
InputMethodManagerService.java 495 public void registerContentObserverLocked(@UserIdInt int userId) {
496 if (mRegistered && mUserId == userId) {
504 if (mUserId != userId) {
506 mUserId = userId;
509 Settings.Secure.DEFAULT_INPUT_METHOD), false, this, userId);
511 Settings.Secure.ENABLED_INPUT_METHODS), false, this, userId);
513 Settings.Secure.SELECTED_INPUT_METHOD_SUBTYPE), false, this, userId);
515 Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD), false, this, userId);
517 Settings.Secure.ACCESSIBILITY_SOFT_KEYBOARD_MODE), false, this, userId);
627 final int userId = getChangingUserId()
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActiveServices.java 193 ServiceMap(Looper looper, int userId) {
195 mUserId = userId;
307 int callingPid, int callingUid, String callingPackage, final int userId)
329 callingPid, callingUid, userId, true, callerFg, false);
340 if (!mAm.mUserController.exists(r.userId)) {
341 Slog.w(TAG, "Trying to start service with non-existent user! " + r.userId);
365 callingUid, r.packageName, service, service.getFlags(), null, r.userId);
373 callingUid, service, callerFg, userId)) {
387 final ServiceMap smap = getServiceMap(r.userId);
390 && mAm.mUserController.hasStartedUserState(r.userId)) {
    [all...]
ActivityRecord.java 116 final int userId; // Which user is this running for?
251 pw.print(" userId="); pw.println(userId);
617 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
    [all...]
ActivityStack.java 742 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
755 if (task.userId != userId) {
761 if (r == null || r.finishing || r.userId != userId ||
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncStorageEngine.java 166 final int userId;
169 public EndPoint(Account account, String provider, int userId) {
172 this.userId = userId;
182 if (userId != spec.userId
183 && userId != UserHandle.USER_ALL
184 && spec.userId != UserHandle.USER_ALL) {
207 sb.append(":u" + userId);
372 /** Reverse mapping for component name -> <userid -> target id>. *
    [all...]
  /frameworks/base/services/core/java/com/android/server/input/
InputManagerService.java     [all...]
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputManagerService.java 299 private void buildTvInputListLocked(int userId, String[] updatedPackages) {
300 UserState userState = getOrCreateUserStateLocked(userId);
308 userId);
324 serviceState = new ServiceState(component, userId);
326 updateServiceConnectionLocked(component, userId);
363 updateServiceConnectionLocked(component, userId);
376 abortPendingCreateSessionRequestsLocked(serviceState, inputId, userId);
386 private void buildTvContentRatingSystemListLocked(int userId) {
387 UserState userState = getOrCreateUserStateLocked(userId);
413 private void switchUser(int userId) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java 182 super(getWallpaperDir(wallpaper.userId).getAbsolutePath(),
184 mUserId = wallpaper.userId;
185 mWallpaperDir = getWallpaperDir(wallpaper.userId);
264 loadSettingsLocked(wallpaper.userId, true);
293 mLockWallpaperMap.remove(wallpaper.userId);
298 saveSettingsLocked(wallpaper.userId);
505 int userId;
572 WallpaperData(int userId, String inputFileName, String cropFileName) {
573 this.userId = userId;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.3_r2-robolectric-0.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
android-all-4.1.2_r1-robolectric-0.jar 
  /external/robolectric/v3/
robolectric-3.1-SNAPSHOT.jar 
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 158 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
161 Slog.i(TAG, "Received broadcast: " + action + " on user " + userId);
169 reloadWidgetsMaskedState(userId);
178 onPackageBroadcastReceived(intent, userId);
329 final int userId = provider.getUserId();
330 if (!mUserManager.isUserUnlockingOrUnlocked(userId) ||
331 isProfileWithLockedParent(userId)) {
334 ensureGroupStateLoadedLocked(userId);
363 private void onPackageBroadcastReceived(Intent intent, int userId) {
364 if (!mUserManager.isUserUnlockingOrUnlocked(userId) ||
    [all...]

Completed in 1411 milliseconds

1 2 3 4 5 6 78 91011>>