Home | History | Annotate | Download | only in libmediaplayerservice

Lines Matching defs:HDCP

18 #define LOG_TAG "HDCP"
21 #include "HDCP.h"
29 HDCP::HDCP(bool createEncryptionModule)
52 this, &HDCP::ObserveWrapper)) == NULL) {
57 HDCP::~HDCP() {
71 status_t HDCP::setObserver(const sp<IHDCPObserver> &observer) {
83 status_t HDCP::initAsync(const char *host, unsigned port) {
93 status_t HDCP::shutdownAsync() {
103 uint32_t HDCP::getCaps() {
112 // use mHDCPModule->getCaps() when the HDCP libraries get updated.
117 status_t HDCP::encrypt(
133 status_t HDCP::encryptNative(
151 status_t HDCP::decrypt(
166 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) {
167 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
170 void HDCP::observe(int msg, int ext1, int ext2) {