Home | History | Annotate | Download | only in pm

Lines Matching defs:mGuestRestrictions

343     @GuardedBy("mGuestRestrictions")
344 private final Bundle mGuestRestrictions = new Bundle();
1355 synchronized (mGuestRestrictions) {
1356 if (mGuestRestrictions.isEmpty()) {
1357 mGuestRestrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, true);
1358 mGuestRestrictions.putBoolean(UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, true);
1359 mGuestRestrictions.putBoolean(UserManager.DISALLOW_OUTGOING_CALLS, true);
1360 mGuestRestrictions.putBoolean(UserManager.DISALLOW_SMS, true);
1368 synchronized (mGuestRestrictions) {
1369 return new Bundle(mGuestRestrictions);
1376 synchronized (mGuestRestrictions) {
1377 mGuestRestrictions.clear();
1378 mGuestRestrictions.putAll(restrictions);
2037 mGuestRestrictions) {
2039 .readRestrictions(parser, mGuestRestrictions);
2343 synchronized (mGuestRestrictions) {
2345 .writeRestrictions(serializer, mGuestRestrictions, TAG_RESTRICTIONS);
2723 synchronized (mGuestRestrictions) {
2724 restrictions.putAll(mGuestRestrictions);
3671 synchronized (mGuestRestrictions) {
3672 UserRestrictionsUtils.dumpRestrictions(pw, " ", mGuestRestrictions);