Searched defs:crypto (Results 1 - 5 of 5) sorted by last modified time

/frameworks/base/media/java/android/media/
H A DMediaCodec.java231 * @param crypto Specify a crypto object to facilitate secure decryption
238 Surface surface, MediaCrypto crypto, int flags) {
256 native_configure(keys, values, surface, crypto, flags);
261 Surface surface, MediaCrypto crypto, int flags);
322 * @throws CryptoException if a crypto object has been specified in
236 configure( MediaFormat format, Surface surface, MediaCrypto crypto, int flags) argument
259 native_configure( String[] keys, Object[] values, Surface surface, MediaCrypto crypto, int flags) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp115 const sp<ICrypto> &crypto,
124 return mCodec->configure(format, mSurfaceTextureClient, crypto, flags);
385 sp<ICrypto> crypto; local
387 crypto = JCrypto::GetCrypto(env, jcrypto);
390 err = codec->configure(format, surfaceTexture, crypto, flags);
112 configure( const sp<AMessage> &format, const sp<ISurfaceTexture> &surfaceTexture, const sp<ICrypto> &crypto, int flags) argument
H A Dandroid_media_MediaCrypto.cpp75 sp<ICrypto> crypto = service->makeCrypto(); local
77 if (crypto == NULL || crypto->initCheck() != OK) {
81 return crypto;
87 sp<ICrypto> crypto = MakeCrypto(); local
89 if (crypto == NULL) {
93 status_t err = crypto->createPlugin(uuid, initData, initSize);
99 return crypto;
112 sp<ICrypto> crypto = MakeCrypto(); local
114 if (crypto
147 setCrypto( JNIEnv *env, jobject thiz, const sp<JCrypto> &crypto) argument
197 sp<JCrypto> crypto = new JCrypto( local
256 sp<JCrypto> crypto = getCrypto(env, thiz); local
[all...]
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp229 sp<ICrypto> crypto = makeCrypto(); local
230 reply->writeStrongBinder(crypto->asBinder());
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp136 const sp<ICrypto> &crypto,
149 if (crypto != NULL) {
150 msg->setPointer("crypto", crypto.get());
851 void *crypto; local
852 if (!msg->findPointer("crypto", &crypto)) {
853 crypto = NULL;
856 mCrypto = static_cast<ICrypto *>(crypto);
133 configure( const sp<AMessage> &format, const sp<SurfaceTextureClient> &nativeWindow, const sp<ICrypto> &crypto, uint32_t flags) argument

Completed in 1105 milliseconds