Searched defs:crypto (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp282 sp<ICrypto> crypto = makeCrypto(); local
283 reply->writeStrongBinder(crypto->asBinder());
/frameworks/base/media/jni/
H A Dandroid_media_MediaCrypto.cpp75 sp<ICrypto> crypto = service->makeCrypto(); local
77 if (crypto == NULL || (crypto->initCheck() != OK && crypto->initCheck() != NO_INIT)) {
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 local
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...]
H A Dandroid_media_MediaCodec.cpp121 const sp<ICrypto> &crypto,
130 return mCodec->configure(format, mSurfaceTextureClient, crypto, flags);
456 sp<ICrypto> crypto; local
458 crypto = JCrypto::GetCrypto(env, jcrypto);
461 err = codec->configure(format, bufferProducer, crypto, flags);
118 configure( const sp<AMessage> &format, const sp<IGraphicBufferProducer> &bufferProducer, const sp<ICrypto> &crypto, int flags) argument
/frameworks/base/media/java/android/media/
H A DMediaCodec.java237 * @param crypto Specify a crypto object to facilitate secure decryption
244 Surface surface, MediaCrypto crypto, int flags) {
262 native_configure(keys, values, surface, crypto, flags);
267 Surface surface, MediaCrypto crypto, int flags);
300 * Thrown when a crypto error occurs while queueing a secure input buffer.
321 * This indicates that a required crypto resource was not able to be
361 * @throws CryptoException if a crypto object has been specified in
242 configure( MediaFormat format, Surface surface, MediaCrypto crypto, int flags) argument
265 native_configure( String[] keys, Object[] values, Surface surface, MediaCrypto crypto, int flags) argument
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp159 const sp<ICrypto> &crypto,
172 if (crypto != NULL) {
173 msg->setPointer("crypto", crypto.get());
993 void *crypto; local
994 if (!msg->findPointer("crypto", &crypto)) {
995 crypto = NULL;
998 mCrypto = static_cast<ICrypto *>(crypto);
156 configure( const sp<AMessage> &format, const sp<Surface> &nativeWindow, const sp<ICrypto> &crypto, uint32_t flags) argument

Completed in 1425 milliseconds