HomeSort by relevance Sort by last modified time
    Searched defs:callingUser (Results 1 - 5 of 5) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 185 int callingUser = UserHandle.getCallingUserId();
191 ok = (foregroundUser == callingUser);
  /frameworks/base/services/java/com/android/server/content/
ContentService.java 174 final int callingUser = UserHandle.getCallingUserId();
175 if (callingUser != userHandle) {
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 521 private SettingsCache getOrConstructCache(int callingUser, SparseArray<SettingsCache> which) {
522 getOrEstablishDatabase(callingUser); // ignore return value; we don't need it
523 return which.get(callingUser);
527 private DatabaseHelper getOrEstablishDatabase(int callingUser) {
528 if (callingUser >= Process.SYSTEM_UID) {
530 throw new IllegalArgumentException("Uid rather than user handle: " + callingUser);
532 Slog.wtf(TAG, "establish db for uid rather than user: " + callingUser);
538 DatabaseHelper dbHelper = mOpenHelpers.get(callingUser);
540 establishDbTracking(callingUser);
541 dbHelper = mOpenHelpers.get(callingUser);
    [all...]
  /frameworks/base/services/java/com/android/server/
BluetoothManagerService.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java 769 int callingUser = UserHandle.getCallingUserId();
775 ok = (foregroundUser == callingUser);
778 + " callingUser=" + callingUser + " ok=" + ok);
    [all...]

Completed in 171 milliseconds