Searched defs:provideKeyResponse (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/drm/mediadrm/plugins/clearkey/default/
H A DSession.cpp45 status_t Session::provideKeyResponse(const Vector<uint8_t>& response) { function in class:clearkeydrm::Session
H A DDrmPlugin.cpp118 status_t DrmPlugin::provideKeyResponse( function in class:clearkeydrm::DrmPlugin
131 status_t res = session->provideKeyResponse(response);
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
H A DSession.cpp50 Status Session::provideKeyResponse(const std::vector<uint8_t>& response) { function in class:android::hardware::drm::V1_1::clearkey::Session
H A DDrmPlugin.cpp230 Return<void> DrmPlugin::provideKeyResponse( function in class:android::hardware::drm::V1_1::clearkey::DrmPlugin
248 Status status = session->provideKeyResponse(response);
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp185 status_t MockDrmPlugin::provideKeyResponse(Vector<uint8_t> const &sessionId, function in class:android::MockDrmPlugin
190 ALOGD("MockDrmPlugin::provideKeyResponse(sessionId=%s, response=%s)",
/frameworks/av/drm/libmediadrm/
H A DIDrm.cpp184 virtual status_t provideKeyResponse(Vector<uint8_t> const &sessionId, function in struct:android::BpDrm
804 uint32_t result = provideKeyResponse(sessionId, response, keySetId);
H A DDrmHal.cpp759 status_t DrmHal::provideKeyResponse(Vector<uint8_t> const &sessionId, function in class:android::DrmHal
770 Return<void> hResult = mPlugin->provideKeyResponse(toHidlVec(sessionId),
/frameworks/base/media/java/android/media/
H A DMediaDrm.java811 * {@link #provideKeyResponse}.
846 * provided to the MediaDrm instance using provideKeyResponse. When the
868 public native byte[] provideKeyResponse( method in class:MediaDrm
875 * keys to load, obtained from a prior call to {@link #provideKeyResponse}.
1352 * getKeyRequest/provideKeyResponse methods.
1434 * {@link #provideKeyResponse} using a session key server.
1781 * Key to extract the number of successful {@link #provideKeyResponse}
1790 * Key to extract the number of failed {@link #provideKeyResponse}
1800 * {@link #provideKeyResponse} calls. The key is used to lookup the
1811 * {@link #provideKeyResponse}
[all...]
H A DMediaPlayer.java4811 * {@link #provideKeyResponse}.
4884 * provided to the DRM engine plugin using provideKeyResponse. When the
4901 public byte[] provideKeyResponse(@Nullable byte[] keySetId, @NonNull byte[] response) method in class:MediaPlayer
4904 Log.v(TAG, "provideKeyResponse: keySetId: " + keySetId + " response: " + response);
4918 byte[] keySetResult = mDrmObj.provideKeyResponse(scope, response);
4920 Log.v(TAG, "provideKeyResponse: keySetId: " + keySetId + " response: " + response +
4927 Log.w(TAG, "provideKeyResponse NotProvisionedException: " +
4929 throw new IllegalStateException("provideKeyResponse: " +
4932 Log.w(TAG, "provideKeyResponse Exception " + e);
4941 * keys to load, obtained from a prior call to {@link #provideKeyResponse}
[all...]
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaPlayer2Impl.java1381 return mPlayer.provideKeyResponse(keySetId, response);
2330 synchronized byte[] provideKeyResponse(byte[] keySetId, byte[] response) method in class:MediaPlayer2Impl.MediaPlayerSourceQueue
2332 return getCurrentPlayer().provideKeyResponse(keySetId, response);

Completed in 141 milliseconds