HomeSort by relevance Sort by last modified time
    Searched refs:restrictions (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_flash_browser_host.cc 148 PP_FlashLSORestrictions restrictions = PP_FLASHLSORESTRICTIONS_NONE; local
152 restrictions = PP_FLASHLSORESTRICTIONS_BLOCK;
154 restrictions = PP_FLASHLSORESTRICTIONS_IN_MEMORY;
157 static_cast<int32_t>(restrictions)));
  /external/chromium_org/ppapi/thunk/
ppb_pdf_api.h 25 virtual void SetContentRestriction(int restrictions) = 0;
ppb_pdf_thunk.cc 84 void SetContentRestriction(PP_Instance instance, int restrictions) {
87 enter.functions()->SetContentRestriction(restrictions);
  /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 97 private static final String TAG_RESTRICTIONS = "restrictions";
409 Bundle restrictions = mUserRestrictions.get(userId); local
410 return restrictions != null ? restrictions : Bundle.EMPTY;
415 public void setUserRestrictions(Bundle restrictions, int userId) {
417 if (restrictions == null) return;
421 mUserRestrictions.get(userId).putAll(restrictions);
608 Bundle restrictions = new Bundle(); local
609 mUserRestrictions.append(UserHandle.USER_OWNER, restrictions);
670 Bundle restrictions = mUserRestrictions.get(userInfo.id) local
750 Bundle restrictions = new Bundle(); local
962 Bundle restrictions = new Bundle(); local
1304 final Bundle restrictions = new Bundle(); local
    [all...]
  /external/chromium_org/ppapi/proxy/
pdf_resource.h 47 virtual void SetContentRestriction(int restrictions) OVERRIDE;
pdf_resource.cc 116 void PDFResource::SetContentRestriction(int restrictions) {
117 Post(RENDERER, PpapiHostMsg_PDF_SetContentRestriction(restrictions));
flash_resource.cc 169 int32_t restrictions; local
172 PpapiHostMsg_Flash_GetLocalDataRestrictions(), &restrictions);
175 return PP_MakeInt32(restrictions);
pdf_resource_unittest.cc 117 int restrictions = 5; local
118 pdf_iface->SetContentRestriction(pp_instance(), restrictions); local
  /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));
  /external/chromium_org/base/win/
metro.cc 142 unsigned long restrictions = 0; local
143 settings->GetRestrictions(&restrictions);
146 (restrictions & WPCFLAG_LOGGING_REQUIRED) == WPCFLAG_LOGGING_REQUIRED;
  /packages/apps/Settings/src/com/android/settings/users/
AppRestrictionsFragment.java 159 private ArrayList<RestrictionEntry> restrictions; field in class:AppRestrictionsFragment.AppRestrictionsPreference
191 void setRestrictions(ArrayList<RestrictionEntry> restrictions) {
192 this.restrictions = restrictions;
204 if (restrictions == null) return null;
205 for (RestrictionEntry entry : restrictions) {
214 return restrictions;
365 Log.e(TAG, "Cannot apply application restrictions on another user!");
700 // If the app is required and has no restrictions, skip showing it
704 // Only do this for restricted profiles, not single-user restrictions
811 ArrayList<RestrictionEntry> restrictions = appPref.getRestrictions(); local
837 RestrictionUtils.setRestrictions(getActivity(), restrictions, mUser); local
866 ArrayList<RestrictionEntry> restrictions = RestrictionUtils.getRestrictions( local
915 final ArrayList<RestrictionEntry> restrictions = results.getParcelableArrayList( local
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
pepper_pdf_host.h 56 int restrictions);
pepper_pdf_host.cc 199 ppapi::host::HostMessageContext* context, int restrictions) {
206 instance->GetRenderView()->GetRoutingID(), restrictions));
  /external/chromium_org/ppapi/cpp/private/
pdf.h 52 int restrictions);
pdf.cc 124 int restrictions) {
127 restrictions);
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_pdf.idl 128 [in] int32_t restrictions);
  /external/chromium_org/ppapi/c/private/
ppb_pdf.h 135 void (*SetContentRestriction)(PP_Instance instance, int restrictions);
  /external/chromium-trace/trace-viewer/build/
generate_standalone_timeline_view.py 126 various ordering restrictions between them.
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/
gl-matrix.rb 9 freely, subject to the following 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/chromium_org/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.
  /external/v8/test/preparser/
nonstrict-arguments.js 28 // Eval restrictions should not trigger outside of strict-mode code.

Completed in 596 milliseconds

1 2 3