Lines Matching refs:store
78 explicit H2C2ComponentStore(sp<HidlComponentStore> const& store) in H2C2ComponentStore() argument
79 : mHidlStore{store}, in H2C2ComponentStore()
80 mHidlConfigurable{[store]() -> sp<HidlConfigurable>{ in __anonac301a9d0202()
81 if (!store) { in __anonac301a9d0202()
85 store->getConfigurable(); in __anonac301a9d0202()
95 explicit H2C2ComponentStore(std::shared_ptr<AidlComponentStore> const& store) in H2C2ComponentStore() argument
96 : mAidlStore{store}, in H2C2ComponentStore()
97 mAidlConfigurable{[store]() -> std::shared_ptr<AidlConfigurable>{ in __anonac301a9d0302()
98 if (!store) { in __anonac301a9d0302()
102 ScopedAStatus status = store->getConfigurable(&configurable); in __anonac301a9d0302()
739 const std::shared_ptr<C2ComponentStore>& store) { in getDeclaredHidlSwcodec() argument
757 return ::android::sp<V1_2::utils::ComponentStore>::make(store); in getDeclaredHidlSwcodec()
765 return ::android::sp<V1_1::utils::ComponentStore>::make(store); in getDeclaredHidlSwcodec()
773 return ::android::sp<V1_0::utils::ComponentStore>::make(store); in getDeclaredHidlSwcodec()
786 std::shared_ptr<C2ComponentStore> store = in RegisterCodecServices() local
788 if (!store) { in RegisterCodecServices()
842 aidlStore = ::ndk::SharedRefBase::make<c2_aidl::utils::ComponentStore>(store); in RegisterCodecServices()
857 android::sp<V1_0::IComponentStore> hidlStore = getDeclaredHidlSwcodec(store); in RegisterCodecServices()