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

1 2 3

  /frameworks/av/media/ndk/
NdkMediaCryptoPriv.h 33 #include <media/ICrypto.h>
38 sp<ICrypto> mCrypto;
NdkMediaCrypto.cpp 30 #include <media/ICrypto.h>
39 static sp<ICrypto> makeCrypto() {
48 sp<ICrypto> crypto = service->makeCrypto();
56 sp<ICrypto> mCrypto;
65 sp<ICrypto> crypto = makeCrypto();
74 sp<ICrypto> crypto = makeCrypto();
84 sp<ICrypto> tmp = makeCrypto();
  /frameworks/av/media/libstagefright/
CodecBase.cpp 21 #include <media/ICrypto.h>
27 void BufferChannelBase::setCrypto(const sp<ICrypto> &crypto) {
BufferImpl.cpp 24 #include <media/ICrypto.h>
62 ICrypto::DestinationType SecureBuffer::getDestinationType() {
63 return ICrypto::kDestinationTypeNativeHandle;
ACodecBufferChannel.cpp 126 if (secureData->getDestinationType() != ICrypto::kDestinationTypeNativeHandle) {
133 ICrypto::DestinationBuffer destination;
135 destination.mType = ICrypto::kDestinationTypeNativeHandle;
138 destination.mType = ICrypto::kDestinationTypeSharedMemory;
142 ICrypto::SourceBuffer source;
154 if (destination.mType == ICrypto::kDestinationTypeSharedMemory) {
  /frameworks/base/media/jni/
android_media_MediaCrypto.h 28 struct ICrypto;
40 static sp<ICrypto> GetCrypto(JNIEnv *env, jobject obj);
47 sp<ICrypto> mCrypto;
49 static sp<ICrypto> MakeCrypto();
51 static sp<ICrypto> MakeCrypto(
android_media_MediaCrypto.cpp 30 #include <mediadrm/ICrypto.h>
66 sp<ICrypto> JCrypto::MakeCrypto() {
75 sp<ICrypto> crypto = service->makeCrypto();
84 sp<ICrypto> JCrypto::MakeCrypto(
86 sp<ICrypto> crypto = MakeCrypto();
111 sp<ICrypto> crypto = MakeCrypto();
125 sp<ICrypto> JCrypto::GetCrypto(JNIEnv *env, jobject obj) {
292 sp<ICrypto> crypto = JCrypto::GetCrypto(env, thiz);
android_media_MediaCodec.h 34 struct ICrypto;
64 const sp<ICrypto> &crypto,
  /frameworks/av/media/libstagefright/include/
SecureBuffer.h 21 #include <media/ICrypto.h>
33 * and its type, which can be fed to ICrypto::decrypt().
43 ICrypto::DestinationType getDestinationType();
ACodecBufferChannel.h 28 #include <media/ICrypto.h>
  /frameworks/av/media/libmedia/include/media/
IMediaDrmService.h 28 struct ICrypto;
36 virtual sp<ICrypto> makeCrypto() = 0;
ICrypto.h 32 struct ICrypto : public IInterface {
83 DISALLOW_EVIL_CONSTRUCTORS(ICrypto);
86 struct BnCrypto : public BnInterface<ICrypto> {
CryptoHal.h 25 #include <mediadrm/ICrypto.h>
60 const ICrypto::SourceBuffer &source, size_t offset,
62 const ICrypto::DestinationBuffer &destination,
Crypto.h 21 #include <media/ICrypto.h>
  /frameworks/av/services/mediadrm/
MediaDrmService.cpp 37 sp<ICrypto> MediaDrmService::makeCrypto() {
MediaDrmService.h 37 virtual sp<ICrypto> makeCrypto();
  /cts/hostsidetests/security/securityPatch/CVE-2017-13253/
poc.cpp 20 #include <media/ICrypto.h>
41 sp<ICrypto> crypto = service->makeCrypto();
67 ICrypto::SourceBuffer source = { .mSharedMemory = sourceMemory,
71 ICrypto::DestinationBuffer destination = {
72 .mType = ICrypto::kDestinationTypeSharedMemory, .mHandle = NULL, .mSharedMemory = destMemory
  /frameworks/av/drm/libmediadrm/
ICrypto.cpp 18 #define LOG_TAG "ICrypto"
25 #include <mediadrm/ICrypto.h>
43 struct BpCrypto : public BpInterface<ICrypto> {
45 : BpInterface<ICrypto>(impl) {
50 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
58 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
68 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
83 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
92 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor());
105 data.writeInterfaceToken(ICrypto::getInterfaceDescriptor())
    [all...]
IMediaDrmService.cpp 23 #include <mediadrm/ICrypto.h>
45 virtual sp<ICrypto> makeCrypto() {
49 return interface_cast<ICrypto>(reply.readStrongBinder());
71 sp<ICrypto> crypto = makeCrypto();
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDrm.h 21 #include <media/ICrypto.h>
77 static sp<ICrypto> createCrypto(status_t *pstatus);
84 static sp<ICrypto> createCryptoAndPlugin(const uint8_t uuid[16],
NuPlayerSource.h 23 #include <media/ICrypto.h>
137 sp<ICrypto> */*crypto*/) {
NuPlayerDrm.cpp 59 sp<ICrypto> NuPlayerDrm::createCrypto(status_t *pstatus)
72 sp<ICrypto> crypto = service->makeCrypto();
179 sp<ICrypto> NuPlayerDrm::createCryptoAndPlugin(const uint8_t uuid[16],
190 sp<ICrypto> crypto = createCrypto(&status);
  /frameworks/av/media/libstagefright/include/media/stagefright/
CodecBase.h 44 struct ICrypto;
258 void setCrypto(const sp<ICrypto> &crypto);
319 sp<ICrypto> mCrypto;
MediaCodec.h 42 struct ICrypto;
95 const sp<ICrypto> &crypto,
101 const sp<ICrypto> &crypto,
364 sp<ICrypto> mCrypto;
  /cts/hostsidetests/security/securityPatch/CVE-2016-2419/
poc.cpp 31 #include <media/ICrypto.h>

Completed in 2019 milliseconds

1 2 3