Home | History | Annotate | Download | only in drmserver

Lines Matching refs:DrmManagerService

18 #define LOG_TAG "DrmManagerService(Native)"
29 #include "DrmManagerService.h"
40 void DrmManagerService::instantiate() {
42 defaultServiceManager()->addService(String16("drm.drmManager"), new DrmManagerService());
54 DrmManagerService::DrmManagerService() :
61 DrmManagerService::~DrmManagerService() {
67 int DrmManagerService::addUniqueId(bool isNative) {
71 void DrmManagerService::removeUniqueId(int uniqueId) {
75 void DrmManagerService::addClient(int uniqueId) {
79 void DrmManagerService::removeClient(int uniqueId) {
83 status_t DrmManagerService::setDrmServiceListener(
90 status_t DrmManagerService::installDrmEngine(int uniqueId, const String8& drmEngineFile) {
95 DrmConstraints* DrmManagerService::getConstraints(
101 DrmMetadata* DrmManagerService::getMetadata(int uniqueId, const String8* path) {
106 bool DrmManagerService::canHandle(int uniqueId, const String8& path, const String8& mimeType) {
111 DrmInfoStatus* DrmManagerService::processDrmInfo(int uniqueId, const DrmInfo* drmInfo) {
116 DrmInfo* DrmManagerService::acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInfoRequest) {
121 status_t DrmManagerService::saveRights(
128 String8 DrmManagerService::getOriginalMimeType(int uniqueId, const String8& path, int fd) {
133 int DrmManagerService::getDrmObjectType(
139 int DrmManagerService::checkRightsStatus(
145 status_t DrmManagerService::consumeRights(
154 status_t DrmManagerService::setPlaybackStatus(
163 bool DrmManagerService::validateAction(
170 status_t DrmManagerService::removeRights(int uniqueId, const String8& path) {
175 status_t DrmManagerService::removeAllRights(int uniqueId) {
180 int DrmManagerService::openConvertSession(int uniqueId, const String8& mimeType) {
185 DrmConvertedStatus* DrmManagerService::convertData(
191 DrmConvertedStatus* DrmManagerService::closeConvertSession(int uniqueId, int convertId) {
196 status_t DrmManagerService::getAllSupportInfo(
202 DecryptHandle* DrmManagerService::openDecryptSession(
204 ALOGV("Entering DrmManagerService::openDecryptSession");
212 DecryptHandle* DrmManagerService::openDecryptSession(
214 ALOGV("Entering DrmManagerService::openDecryptSession with uri");
222 DecryptHandle* DrmManagerService::openDecryptSession(
224 ALOGV("Entering DrmManagerService::openDecryptSession for streaming");
232 status_t DrmManagerService::closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) {
240 status_t DrmManagerService::initializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle,
249 status_t DrmManagerService::decrypt(
259 status_t DrmManagerService::finalizeDecryptUnit(
268 ssize_t DrmManagerService::pread(int uniqueId, DecryptHandle* decryptHandle,
277 status_t DrmManagerService::dump(int fd, const Vector<String16>& args)
284 "can't dump DrmManagerService from pid=%d, uid=%d\n",