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

1 2

  /frameworks/base/cmds/dpm/
Android.mk 7 LOCAL_MODULE := dpm
11 LOCAL_MODULE := dpm
12 LOCAL_SRC_FILES := dpm
  /hardware/intel/img/hwcomposer/platforms/merrifield_plus/
PlatfExternalDevice.h 27 DisplayPlaneManager& dpm);
PlatfPrimaryDevice.h 28 DisplayPlaneManager& dpm);
PlatfPrimaryDevice.cpp 26 DisplayPlaneManager& dpm)
27 : PrimaryDevice(hwc, dpm)
PlatfExternalDevice.cpp 27 DisplayPlaneManager& dpm)
28 : ExternalDevice(hwc, dpm)
PlatfHwcomposer.cpp 55 DisplayPlaneManager& dpm)
62 return new PlatfExternalDevice(*this, dpm);
64 return new PlatfPrimaryDevice(*this, dpm);
71 return new PlatfExternalDevice(*this, dpm);
PlatfHwcomposer.h 33 IDisplayDevice* createDisplayDevice(int disp, DisplayPlaneManager& dpm);
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
CrossProfileUtils.java 37 final DevicePolicyManager dpm = (DevicePolicyManager) getContext().getSystemService( local
43 dpm.addCrossProfileIntentFilter(ADMIN_RECEIVER_COMPONENT, intentFilter,
50 final DevicePolicyManager dpm = (DevicePolicyManager) getContext().getSystemService( local
56 dpm.addCrossProfileIntentFilter(ADMIN_RECEIVER_COMPONENT, intentFilter,
61 final DevicePolicyManager dpm = (DevicePolicyManager) getContext().getSystemService( local
63 dpm.clearCrossProfileIntentFilters(ADMIN_RECEIVER_COMPONENT);
UserRestrictionActivity.java 63 DevicePolicyManager dpm = (DevicePolicyManager) local
70 dpm.addUserRestriction(BaseManagedProfileTest.ADMIN_RECEIVER_COMPONENT, restrictionKey);
74 dpm.clearUserRestriction(
  /hardware/intel/img/hwcomposer/common/devices/
PrimaryDevice.cpp 25 PrimaryDevice::PrimaryDevice(Hwcomposer& hwc, DisplayPlaneManager& dpm)
26 : PhysicalDevice(DEVICE_PRIMARY, hwc, dpm)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DeviceAdminTestReceiver.java 45 DevicePolicyManager dpm = (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE); local
46 dpm.setProfileEnabled(new ComponentName(context.getApplicationContext(), getClass()));
54 dpm.addCrossProfileIntentFilter(getWho(context), filter,
60 dpm.addCrossProfileIntentFilter(getWho(context), filter,
CrossProfileTestActivity.java 61 DevicePolicyManager dpm = (DevicePolicyManager)getSystemService(Context.DEVICE_POLICY_SERVICE); local
62 return dpm.isAdminActive(adminReceiver) && dpm.isProfileOwnerApp(adminReceiver.getPackageName());
  /hardware/intel/img/hwcomposer/include/
PrimaryDevice.h 32 PrimaryDevice(Hwcomposer& hwc, DisplayPlaneManager& dpm);
ExternalDevice.h 30 ExternalDevice(Hwcomposer& hwc, DisplayPlaneManager& dpm);
PhysicalDevice.h 35 PhysicalDevice(uint32_t type, Hwcomposer& hwc, DisplayPlaneManager& dpm);
Hwcomposer.h 103 DisplayPlaneManager& dpm) = 0;
  /frameworks/base/services/core/java/com/android/server/wm/
KeyguardDisableHandler.java 89 DevicePolicyManager dpm = (DevicePolicyManager) mContext.getSystemService( local
91 if (dpm != null) {
93 mAllowDisableKeyguard = dpm.getPasswordQuality(null,
  /packages/apps/Settings/src/com/android/settings/
MonitoringCertInfoActivity.java 44 DevicePolicyManager dpm = local
50 hasDeviceOwner = dpm.getDeviceOwner() != null;
55 dpm.getDeviceOwnerName());
CryptKeeperSettings.java 137 DevicePolicyManager dpm = (DevicePolicyManager) local
139 if (dpm != null) {
140 int status = dpm.getStorageEncryptionStatus();
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 210 * Get the dpm. This mainly allows us to make some utility calls without it, for testing.
221 * clear the aggregate policy (so it can be recomputed) and set the policies in the DPM
328 DevicePolicyManager dpm = getDPM(); local
332 if (dpm.getPasswordMinimumLength(mAdminName) < policy.mPasswordMinLength) {
337 if (dpm.getPasswordQuality(mAdminName) < policy.getDPManagerPasswordQuality()) {
340 if (!dpm.isActivePasswordSufficient()) {
345 // Note, we use seconds, dpm uses milliseconds
346 if (dpm.getMaximumTimeToLock(mAdminName) > policy.mMaxScreenLockTime * 1000) {
352 long currentTimeout = dpm.getPasswordExpirationTimeout(mAdminName);
358 long expirationDate = dpm.getPasswordExpiration(mAdminName)
405 DevicePolicyManager dpm = getDPM(); local
667 DevicePolicyManager dpm = getDPM(); local
684 DevicePolicyManager dpm = getDPM(); local
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
PreBootListener.java 72 DevicePolicyManager dpm = (DevicePolicyManager) local
74 ComponentName profileOwner = dpm.getProfileOwnerAsUser(userId);
ManagedProvisioningService.java 267 DevicePolicyManager dpm = local
269 if (!dpm.setProfileOwner(mActiveAdminComponentName, mMdmPackageName,
280 DevicePolicyManager dpm = local
282 dpm.setActiveAdmin(mActiveAdminComponentName, true /* refreshing*/,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
ForceStopManager.java 60 DevicePolicyManager dpm = (DevicePolicyManager) mContext.getSystemService( local
62 if (dpm.packageHasActiveAdmins(mAppInfo.getPackageName())) {
  /build/target/product/
base.mk 35 dpm \
  /frameworks/base/cmds/dpm/src/com/android/commands/dpm/
Dpm.java 17 package com.android.commands.dpm;
30 public final class Dpm extends BaseCommand {
38 (new Dpm()).run(args);
49 "usage: dpm [subcommand] [options]\n" +
50 "usage: dpm set-device-owner <COMPONENT>\n" +
51 "usage: dpm set-profile-owner <COMPONENT> <USER_ID>\n" +
53 "dpm set-device-owner: Sets the given component as active admin, and its\n" +
56 "dpm set-profile-owner: Sets the given component as active admin and profile" +

Completed in 920 milliseconds

1 2