/aosp12/frameworks/native/headers/media_plugin/media/hardware/ |
H A D | CryptoAPI.h | 30 struct CryptoFactory { struct 31 CryptoFactory() {} in CryptoFactory() argument 32 virtual ~CryptoFactory() {} in ~CryptoFactory() argument 41 CryptoFactory(const CryptoFactory &); 42 CryptoFactory &operator=(const CryptoFactory &); argument 121 extern android::CryptoFactory *createCryptoFactory();
|
/aosp12/hardware/interfaces/drm/1.0/default/ |
H A D | CryptoFactory.h | 40 struct CryptoFactory : public ICryptoFactory { struct 41 CryptoFactory(); 42 virtual ~CryptoFactory() {} in ~CryptoFactory() argument 54 PluginLoader<android::CryptoFactory> loader; 56 CryptoFactory(const CryptoFactory &) = delete; 57 void operator=(const CryptoFactory &) = delete; argument
|
H A D | CryptoFactory.cpp | 30 CryptoFactory::CryptoFactory() : in CryptoFactory() function in android::hardware::drm::V1_0::implementation::CryptoFactory 35 Return<bool> CryptoFactory::isCryptoSchemeSupported( in isCryptoSchemeSupported() 45 Return<void> CryptoFactory::createPlugin(const hidl_array<uint8_t, 16>& uuid, in createPlugin() 67 return new CryptoFactory(); in HIDL_FETCH_ICryptoFactory()
|
H A D | Android.bp | 150 "CryptoFactory.cpp",
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/ |
H A D | CryptoFactory.h | 26 class CryptoFactory : public android::CryptoFactory { 28 CryptoFactory() {} in CryptoFactory() function 29 virtual ~CryptoFactory() {} in ~CryptoFactory() 39 DISALLOW_EVIL_CONSTRUCTORS(CryptoFactory);
|
H A D | CreatePluginFactories.h | 25 android::CryptoFactory* createCryptoFactory();
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/ |
H A D | CryptoFactory.h | 37 struct CryptoFactory : public ICryptoFactory { struct 38 CryptoFactory() {} in CryptoFactory() function 39 virtual ~CryptoFactory() {} in ~CryptoFactory() argument 50 CLEARKEY_DISALLOW_COPY_AND_ASSIGN(CryptoFactory);
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/ |
H A D | CreatePluginFactories.cpp | 28 android::CryptoFactory* createCryptoFactory() { in createCryptoFactory() 29 return new clearkeydrm::CryptoFactory(); in createCryptoFactory()
|
H A D | CryptoFactory.cpp | 33 bool CryptoFactory::isCryptoSchemeSupported(const uint8_t uuid[16]) const { in isCryptoSchemeSupported() 37 android::status_t CryptoFactory::createPlugin( in createPlugin()
|
H A D | Android.bp | 33 "CryptoFactory.cpp",
|
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/ |
H A D | service.cpp | 30 using android::hardware::drm::V1_4::clearkey::CryptoFactory; 35 sp<ICryptoFactory> cryptoFactory = new CryptoFactory; in main()
|
H A D | serviceLazy.cpp | 30 using android::hardware::drm::V1_4::clearkey::CryptoFactory; 36 sp<ICryptoFactory> cryptoFactory = new CryptoFactory; in main()
|
H A D | CryptoFactory.cpp | 36 Return<bool> CryptoFactory::isCryptoSchemeSupported( in isCryptoSchemeSupported() 42 Return<void> CryptoFactory::createPlugin( in createPlugin()
|
H A D | CreatePluginFactories.cpp | 35 return new CryptoFactory(); in createCryptoFactory()
|
H A D | Android.bp | 39 "CryptoFactory.cpp",
|
/aosp12/frameworks/av/drm/mediadrm/plugins/mock/ |
H A D | MockDrmCryptoPlugin.h | 24 android::CryptoFactory *createCryptoFactory(); 40 class MockCryptoFactory : public CryptoFactory {
|
H A D | MockDrmCryptoPlugin.cpp | 35 CryptoFactory *createCryptoFactory() in createCryptoFactory()
|
/aosp12/hardware/interfaces/drm/1.0/ |
H A D | ICryptoFactory.hal | 21 * Ref: frameworks/native/include/media/hardware/CryptoAPI.h:CryptoFactory
|