HomeSort by relevance Sort by last modified time
    Searched defs:drm (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/media/java/android/drm/mobile1/
DrmException.java 17 package android.drm.mobile1;
22 * A DrmException is thrown to report errors specific to handle DRM content and rights.
26 // TODO: add more specific DRM error codes.
DrmConstraintInfo.java 17 package android.drm.mobile1;
22 * This class provides interfaces to access the DRM constraint.
DrmRights.java 17 package android.drm.mobile1;
20 * This class provides interfaces to access the DRM rights.
24 * The DRM permission of play.
29 * The DRM permission of display.
34 * The DRM permission of execute.
39 * The DRM permission of print.
DrmRightsManager.java 17 package android.drm.mobile1;
23 * This class provides interfaces to access the DRM right manager.
27 * The "application/vnd.oma.drm.rights+xml" mime type.
29 public static final String DRM_MIMETYPE_RIGHTS_XML_STRING = "application/vnd.oma.drm.rights+xml";
32 * The "application/vnd.oma.drm.rights+wbxml" mime type.
34 public static final String DRM_MIMETYPE_RIGHTS_WBXML_STRING = "application/vnd.oma.drm.rights+wbxml";
37 * The id of "application/vnd.oma.drm.rights+xml" mime type.
42 * The id of "application/vnd.oma.drm.rights+wbxml" mime type.
47 * The id of "application/vnd.oma.drm.message" mime type.
87 * Install one DRM rights and return one instance of DrmRights
    [all...]
  /cts/tests/tests/drm/src/android/drm/cts/
ConfigFactory.java 17 package android.drm.cts;
21 import android.drm.cts.configs.PassthruConfig;
22 import android.drm.cts.configs.FwdLockConfig;
30 * @param plugInName Name of DRM plug-in. The name SHOULD be consistent with
Config.java 17 package android.drm.cts;
DrmInfoStatusTest.java 17 package android.drm.cts;
21 import android.drm.DrmInfoStatus;
22 import android.drm.DrmInfoRequest;
23 import android.drm.ProcessedData;
DrmEventTest.java 17 package android.drm.cts;
22 import android.drm.DrmEvent;
23 import android.drm.DrmInfoEvent;
24 import android.drm.DrmErrorEvent;
DrmSupportInfoTest.java 17 package android.drm.cts;
22 import android.drm.DrmSupportInfo;
  /frameworks/base/drm/java/android/drm/
DrmConvertedStatus.java 17 package android.drm;
22 * An instance of this class may be created two ways by the drm framework:
DrmInfoStatus.java 17 package android.drm;
21 * and an online DRM server. Specifically, when the
48 * The type of DRM information processed. Must be one of the valid type
69 * @param infoType The type of the DRM information processed. Must be a valid
ProcessedData.java 17 package android.drm;
22 * transaction between a device and a DRM server.
DrmErrorEvent.java 17 package android.drm;
40 * Response from the server cannot be handled by the DRM plug-in (agent).
58 * Failed to remove all the rights objects associated with all DRM schemes.
DrmEvent.java 17 package android.drm;
22 * A base class that is used to send asynchronous event information from the DRM framework.
31 * All of the rights information associated with all DRM schemes have been successfully removed.
35 * The given DRM information has been successfully processed.
DrmInfoEvent.java 17 package android.drm;
DrmInfo.java 17 package android.drm;
25 * between a device and an online DRM server. The DRM framework achieves
38 // DRM scheme such as account id, path or multiple path's
DrmRights.java 17 package android.drm;
23 * An entity class that wraps the license information retrieved from the online DRM server.
34 * Please note that the account id and subscription id is not mandatory by all DRM agents
35 * or plugins. When account id or subscription id is not required by the specific DRM
DrmSupportInfo.java 17 package android.drm;
23 * An entity class that wraps the capability of each DRM plug-in (agent),
24 * such as the MIME type and file suffix the DRM plug-in can handle.
36 * Adds the specified MIME type to the list of MIME types this DRM plug-in supports.
38 * @param mimeType MIME type that can be handles by this DRM plug-in.
53 * Adds the specified file suffix to the list of file suffixes this DRM plug-in supports.
55 * @param fileSuffix File suffix that can be handled by this DRM plug-in.
57 * that some DRM content comes with no file suffix.
69 * this DRM plug-in supports.
79 * this DRM plug-in supports
    [all...]
DrmInfoRequest.java 17 package android.drm;
23 * An entity class that is used to pass information to an online DRM server. An instance of this
31 * Acquires DRM server registration information.
35 * Acquires information for unregistering the DRM server.
DrmStore.java 17 package android.drm;
20 * Defines constants that are used by the DRM framework.
25 * Interface definition for the columns that represent DRM constraints.
26 * {@link android.drm.DrmManagerClient#getConstraints DrmManagerClient.getConstraints()}
28 * {@link android.drm.DrmStore.Action actions} that can be performed
41 * {@link android.drm.DrmStore.Action action}.
50 * {@link android.drm.DrmStore.Action action}.
58 * an {@link android.drm.DrmStore.Action action} can be performed on
67 * an {@link android.drm.DrmStore.Action action} can not be performed on
92 * Defines DRM object types
    [all...]
DrmUtils.java 17 package android.drm;
32 * DRM constraint information. If a DRM scheme has specific constraints beyond the standard
105 * extended metadata embedded in DRM constraint information.
115 * Utility that parses extended metadata embedded in DRM constraint information.
  /packages/apps/Mms/src/com/android/mms/drm/
DrmUtils.java 18 package com.android.mms.drm;
20 import android.drm.*;
35 /** The MIME type of special DRM files */
63 * Check if content may be forwarded according to DRM
72 // first check if the URI is registered as DRM in DRM-framework
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmPushReceiver.java 17 package com.android.providers.drm;
22 import android.drm.mobile1.DrmException;
23 import android.drm.mobile1.DrmRights;
24 import android.drm.mobile1.DrmRightsManager;
54 Log.e(TAG, "Install drm rights failed.");
57 Log.e(TAG, "IOException occurs when install drm rights.");
61 Log.d(TAG, "Install drm rights successfully.");
64 Log.d(TAG, "This is not drm rights push mimetype.");
  /cts/tests/tests/drm/src/android/drm/cts/configs/
FwdLockConfig.java 17 package android.drm.cts.configs;
21 import android.drm.cts.Config;
33 return "application/x-android-drm-fl";
PassthruConfig.java 17 package android.drm.cts.configs;
21 import android.drm.cts.Config;
33 return "application/vnd.passthru.drm";

Completed in 129 milliseconds

1 2