Searched defs:mGuestRestrictions (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DUserManagerService.java309 @GuardedBy("mGuestRestrictions")
310 private final Bundle mGuestRestrictions = new Bundle(); field in class:UserManagerService
1061 synchronized (mGuestRestrictions) {
1062 if (mGuestRestrictions.isEmpty()) {
1063 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
1064 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
1065 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1066 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1074 synchronized (mGuestRestrictions) {
1075 return new Bundle(mGuestRestrictions);
[all...]

Completed in 36 milliseconds