Home
last modified time | relevance | path

Searched refs:CryptoFactory (Results 1 – 18 of 18) sorted by relevance

/aosp12/frameworks/native/headers/media_plugin/media/hardware/
H A DCryptoAPI.h30 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 DCryptoFactory.h40 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 DCryptoFactory.cpp30 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 DAndroid.bp150 "CryptoFactory.cpp",
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/
H A DCryptoFactory.h26 class CryptoFactory : public android::CryptoFactory {
28 CryptoFactory() {} in CryptoFactory() function
29 virtual ~CryptoFactory() {} in ~CryptoFactory()
39 DISALLOW_EVIL_CONSTRUCTORS(CryptoFactory);
H A DCreatePluginFactories.h25 android::CryptoFactory* createCryptoFactory();
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
H A DCryptoFactory.h37 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 DCreatePluginFactories.cpp28 android::CryptoFactory* createCryptoFactory() { in createCryptoFactory()
29 return new clearkeydrm::CryptoFactory(); in createCryptoFactory()
H A DCryptoFactory.cpp33 bool CryptoFactory::isCryptoSchemeSupported(const uint8_t uuid[16]) const { in isCryptoSchemeSupported()
37 android::status_t CryptoFactory::createPlugin( in createPlugin()
H A DAndroid.bp33 "CryptoFactory.cpp",
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
H A Dservice.cpp30 using android::hardware::drm::V1_4::clearkey::CryptoFactory;
35 sp<ICryptoFactory> cryptoFactory = new CryptoFactory; in main()
H A DserviceLazy.cpp30 using android::hardware::drm::V1_4::clearkey::CryptoFactory;
36 sp<ICryptoFactory> cryptoFactory = new CryptoFactory; in main()
H A DCryptoFactory.cpp36 Return<bool> CryptoFactory::isCryptoSchemeSupported( in isCryptoSchemeSupported()
42 Return<void> CryptoFactory::createPlugin( in createPlugin()
H A DCreatePluginFactories.cpp35 return new CryptoFactory(); in createCryptoFactory()
H A DAndroid.bp39 "CryptoFactory.cpp",
/aosp12/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.h24 android::CryptoFactory *createCryptoFactory();
40 class MockCryptoFactory : public CryptoFactory {
H A DMockDrmCryptoPlugin.cpp35 CryptoFactory *createCryptoFactory() in createCryptoFactory()
/aosp12/hardware/interfaces/drm/1.0/
H A DICryptoFactory.hal21 * Ref: frameworks/native/include/media/hardware/CryptoAPI.h:CryptoFactory