Home
last modified time | relevance | path

Searched refs:mByteArrayProperties (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/drm/mediadrm/plugins/mock/
DMockDrmCryptoPlugin.cpp137 mByteArrayProperties.add(String8("mock-initdata"), initData); in getKeyRequest()
157 index = mByteArrayProperties.indexOfKey(String8("mock-request")); in getKeyRequest()
162 request = mByteArrayProperties.valueAt(index); in getKeyRequest()
203 mByteArrayProperties.add(String8("mock-response"), response); in provideKeyResponse()
283 ssize_t index = mByteArrayProperties.indexOfKey(String8("mock-request")); in getProvisionRequest()
288 request = mByteArrayProperties.valueAt(index); in getProvisionRequest()
312 mByteArrayProperties.add(String8("mock-response"), response); in provideProvisionResponse()
325 ssize_t index = mByteArrayProperties.indexOfKey(String8("mock-secure-stop")); in getSecureStop()
330 secureStop = mByteArrayProperties.valueAt(index); in getSecureStop()
345 ssize_t index = mByteArrayProperties.indexOfKey(String8("mock-secure-stop1")); in getSecureStops()
[all …]
DMockDrmCryptoPlugin.h153 KeyedVector<String8, Vector<uint8_t> > mByteArrayProperties; variable
/frameworks/av/drm/mediadrm/plugins/clearkey/default/
DDrmPlugin.cpp62 mByteArrayProperties.add(kDeviceIdKey, testDeviceId); in initProperties()
142 ssize_t index = mByteArrayProperties.indexOfKey(name); in getPropertyByteArray()
147 value = mByteArrayProperties.valueAt(index); in getPropertyByteArray()
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
DDrmPlugin.cpp83 mByteArrayProperties[kDeviceIdKey] = valueVector; in initProperties()
88 mByteArrayProperties[kMetricsKey] = valueVector; in initProperties()
289 mByteArrayProperties.find(std::string(propertyName.c_str())); in getPropertyByteArray()
290 if (itr == mByteArrayProperties.end()) { in getPropertyByteArray()
/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/
DDrmPlugin.h267 android::KeyedVector<String8, Vector<uint8_t>> mByteArrayProperties; variable
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
DDrmPlugin.h325 std::map<std::string, std::vector<uint8_t> > mByteArrayProperties; member