/frameworks/base/core/java/android/os/ |
IUserManager.aidl | 44 void setUserRestrictions(in Bundle restrictions, int userHandle); 45 void setApplicationRestrictions(in String packageName, in Bundle restrictions,
|
UserManager.java | 40 * Key for user restrictions. Specifies if a user is disallowed from adding and removing 51 * Key for user restrictions. Specifies if a user is disallowed from changing Wi-Fi 62 * Key for user restrictions. Specifies if a user is disallowed from installing applications. 72 * Key for user restrictions. Specifies if a user is disallowed from uninstalling applications. 82 * Key for user restrictions. Specifies if a user is disallowed from toggling location sharing. 93 * Key for user restrictions. Specifies if a user is disallowed from enabling the 104 * Key for user restrictions. Specifies if a user is disallowed from configuring bluetooth. 114 * Key for user restrictions. Specifies if a user is disallowed from transferring files over 124 * Key for user restrictions. Specifies if a user is disallowed from configuring user 134 * Key for user restrictions. Specifies if a user is disallowed from removing users [all...] |
/frameworks/base/services/java/com/android/server/pm/ |
UserManagerService.java | 87 private static final String TAG_RESTRICTIONS = "restrictions"; 374 Bundle restrictions = mUserRestrictions.get(userId); local 375 return restrictions != null ? restrictions : Bundle.EMPTY; 380 public void setUserRestrictions(Bundle restrictions, int userId) { 384 mUserRestrictions.get(userId).putAll(restrictions); 571 Bundle restrictions = new Bundle(); local 572 mUserRestrictions.append(UserHandle.USER_OWNER, restrictions); 618 Bundle restrictions = mUserRestrictions.get(userInfo.id); local 619 if (restrictions != null) 694 Bundle restrictions = new Bundle(); local 840 Bundle restrictions = new Bundle(); local 1016 final Bundle restrictions = new Bundle(); local [all...] |
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
resetCookies.js | 6 // Due to cross-origin restrictions, we can only (simply) reset cookies for our current origin.
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
UserManagerTest.java | 68 Bundle restrictions = mUserManager.getUserRestrictions(user.getUserHandle()); local 70 restrictions.getBoolean(UserManager.DISALLOW_CONFIG_WIFI)); 149 Bundle restrictions = new Bundle(); local 150 restrictions.putBoolean(UserManager.DISALLOW_INSTALL_APPS, true); 151 restrictions.putBoolean(UserManager.DISALLOW_CONFIG_WIFI, false); 152 mUserManager.setUserRestrictions(restrictions, new UserHandle(users.get(1).id));
|
/packages/apps/Settings/src/com/android/settings/users/ |
AppRestrictionsFragment.java | 179 private ArrayList<RestrictionEntry> restrictions; field in class:AppRestrictionsFragment.AppRestrictionsPreference 212 void setRestrictions(ArrayList<RestrictionEntry> restrictions) { 213 this.restrictions = restrictions; 229 if (restrictions == null) return null; 230 for (RestrictionEntry entry : restrictions) { 239 return restrictions; 359 Log.e(TAG, "Cannot apply application restrictions on a regular user!"); 619 // If the app is required and has no restrictions, skip showing it 713 && pref.restrictions == null) 732 ArrayList<RestrictionEntry> restrictions = appPref.getRestrictions(); local 760 RestrictionUtils.setRestrictions(getActivity(), restrictions, mUser); local 785 ArrayList<RestrictionEntry> restrictions = RestrictionUtils.getRestrictions( local 824 final ArrayList<RestrictionEntry> restrictions = results.getParcelableArrayList( local [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLMediaElement.h | 184 // Restrictions to change default behaviors. 197 void setBehaviorRestrictions(BehaviorRestrictions restrictions) { m_restrictions = restrictions; } 294 // These "internal" functions do not check user gesture restrictions.
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/ |
Runtime.pm | 69 restrictions on versions, and an indication whether these required modules are 88 Also a list of restrictions on the features the module does provide:
|
/external/v8/test/preparser/ |
nonstrict-arguments.js | 28 // Eval restrictions should not trigger outside of strict-mode code.
|
nonstrict-eval.js | 28 // Eval restrictions should not trigger outside of strict-mode code.
|
/build/tools/droiddoc/templates-pdk/ |
customizations.cs | 130 restrictions, see the <a href="<?cs var:toroot ?>license.html">Content 138 For details and restrictions, see the <a href="<?cs var:toroot ?>license.html">
|
/frameworks/base/core/java/android/accounts/ |
ChooseTypeAndAccountActivity.java | 147 Bundle restrictions = UserManager.get(this) local 150 restrictions.getBoolean(UserManager.DISALLOW_MODIFY_ACCOUNTS, false);
|
/build/tools/droiddoc/templates-ds/ |
customizations.cs | 341 restrictions, see the <a href="<?cs var:toroot ?>license.html">Content 349 For details and restrictions, see the <a href="<?cs var:toroot ?>license.html">
|
/build/tools/droiddoc/templates-sdk/ |
customizations.cs | 341 restrictions, see the <a href="<?cs var:toroot ?>license.html">Content 349 For details and restrictions, see the <a href="<?cs var:toroot ?>license.html">
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar | |
/build/tools/droiddoc/templates-sac/ |
customizations.cs | 342 restrictions, see the <a href="<?cs var:toroot ?>license.html">Content 350 For details and restrictions, see the <a href="<?cs var:toroot ?>license.html">
|
/external/chromium/chrome/browser/ui/ |
browser.cc | 3756 int restrictions = 0; local [all...] |
/external/chromium/chrome/browser/tab_contents/ |
tab_contents.h | 807 void OnUpdateContentRestrictions(int restrictions); [all...] |