Home
last modified time | relevance | path

Searched refs:bytesDecrypted (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
DAesCtrDecryptorUnittest.cpp51 size_t bytesDecrypted = 0; in attemptDecryptExpectingSuccess() local
54 &bytesDecrypted)); in attemptDecryptExpectingSuccess()
55 EXPECT_EQ(totalSize, bytesDecrypted); in attemptDecryptExpectingSuccess()
76 size_t bytesDecrypted = 0; in TEST_F() local
83 &subSamples[0], kNumSubsamples, &bytesDecrypted)); in TEST_F()
84 ASSERT_EQ(0u, bytesDecrypted); in TEST_F()
110 size_t bytesDecrypted = 0; in TEST_F() local
117 &subSamples[0], kNumSubsamples, &bytesDecrypted)); in TEST_F()
118 ASSERT_EQ(0u, bytesDecrypted); in TEST_F()
/frameworks/av/drm/mediadrm/plugins/clearkey/default/
DCryptoPlugin.cpp66 size_t bytesDecrypted; in decrypt() local
68 numSubSamples, &bytesDecrypted); in decrypt()
70 return static_cast<ssize_t>(bytesDecrypted); in decrypt()
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
DCryptoPlugin.cpp191 size_t bytesDecrypted; in decrypt_1_2() local
193 static_cast<uint8_t*>(destPtr), toVector(subSamples), &bytesDecrypted); in decrypt_1_2()
195 _hidl_cb(Status_V1_2::OK, static_cast<ssize_t>(bytesDecrypted), ""); in decrypt_1_2()