Home | History | Annotate | Download | only in libmediaplayerservice

Lines Matching full:uuid

71  * specified by uuid
82 void Crypto::findFactoryForScheme(const uint8_t uuid[16]) {
91 uuidVector.appendArray(uuid, sizeof(uuid));
94 if (loadLibraryForScheme(mUUIDToLibraryPathMap[index], uuid)) {
117 if (loadLibraryForScheme(pluginPath, uuid)) {
131 if (loadLibraryForScheme(pluginPath, uuid)) {
140 bool Crypto::loadLibraryForScheme(const String8 &path, const uint8_t uuid[16]) {
167 !mFactory->isCryptoSchemeSupported(uuid)) {
175 bool Crypto::isCryptoSchemeSupported(const uint8_t uuid[16]) {
178 if (mFactory && mFactory->isCryptoSchemeSupported(uuid)) {
182 findFactoryForScheme(uuid);
187 const uint8_t uuid[16], const void *data, size_t size) {
194 if (!mFactory || !mFactory->isCryptoSchemeSupported(uuid)) {
195 findFactoryForScheme(uuid);
202 return mFactory->createPlugin(uuid, data, size, &mPlugin);