Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 64) sorted by relevance

123

/hardware/google/av/codec2/hidl/services/
DC2SoftwareCodecServiceRegistrant.cpp27 android::sp<IComponentStore> store = in RegisterCodecServices() local
30 if (store == nullptr) { in RegisterCodecServices()
33 if (store->registerAsService("software") != android::OK) { in RegisterCodecServices()
Dvendor.cpp116 android::sp<IComponentStore> store; in main() local
122 store = new utils::ComponentStore( in main()
125 if (store == nullptr) { in main()
128 if (store->registerAsService("default") != android::OK) { in main()
/hardware/interfaces/gnss/2.0/vts/functional/
Dgnss_hal_test.cpp160 info_cbq_.store(info); in gnssSetSystemInfoCb()
166 capabilities_cbq_.store(capabilities); in gnssSetCapabilitesCb()
172 capabilities_cbq_.store(capabilities); in gnssSetCapabilitiesCb_2_0()
178 name_cbq_.store(name); in gnssNameCb()
195 location_cbq_.store(location); in gnssLocationCbImpl()
207 sv_info_list_cbq_.store(svInfoList); in gnssSvStatusCb_2_0()
214 measurement_cbq_.store(data); in gnssMeasurementCb_2_0()
221 capabilities_cbq_.store(capabilities); in setCapabilitiesCb()
Dgnss_hal_test.h84 void store(const T& event);
269 void GnssHalTest::CallbackQueue<T>::store(const T& event) { in store() function
/hardware/interfaces/automotive/vehicle/2.0/default/
DVehicleService.cpp31 auto store = std::make_unique<VehiclePropertyStore>(); in main() local
32 auto hal = std::make_unique<impl::EmulatedVehicleHal>(store.get()); in main()
/hardware/interfaces/identity/aidl/default/
Dservice.cpp34 std::shared_ptr<IdentityCredentialStore> store = in main() local
39 binder_status_t status = AServiceManager_addService(store->asBinder().get(), instance.c_str()); in main()
/hardware/google/av/codec2/vndk/
DC2Store.cpp69 void setComponentStore(std::shared_ptr<C2ComponentStore> store);
134 std::shared_ptr<C2ComponentStore> store) { in UseComponentStoreForIonAllocator() argument
146 c2_status_t res = store->querySupportedValues_sm(query); in UseComponentStoreForIonAllocator()
165 mapper = [store](C2MemoryUsage usage, size_t capacity, in UseComponentStoreForIonAllocator()
172 c2_status_t res = store->config_sm({&usageInfo}, &failures); in UseComponentStoreForIonAllocator()
187 void C2PlatformAllocatorStoreImpl::setComponentStore(std::shared_ptr<C2ComponentStore> store) { in setComponentStore() argument
193 _mComponentStore = store; in setComponentStore()
201 UseComponentStoreForIonAllocator(allocator, store); in setComponentStore()
256 std::shared_ptr<C2PlatformAllocatorStoreImpl> store = gPlatformAllocatorStore.lock(); in GetCodec2PlatformAllocatorStore() local
257 if (store == nullptr) { in GetCodec2PlatformAllocatorStore()
[all …]
/hardware/google/av/codec2/hidl/1.0/utils/
DComponentStore.cpp65 StoreIntf(const std::shared_ptr<C2ComponentStore>& store) : in StoreIntf()
66 ConfigurableC2Intf(store ? store->getName() : ""), in StoreIntf()
67 mStore(store) { in StoreIntf()
118 ComponentStore::ComponentStore(const std::shared_ptr<C2ComponentStore>& store) : in ComponentStore() argument
119 Configurable(new CachedConfigurable(std::make_unique<StoreIntf>(store))), in ComponentStore()
120 mStore(store) { in ComponentStore()
123 SetPreferredCodec2ComponentStore(store); in ComponentStore()
DInputSurface.cpp289 const sp<ComponentStore>& store, in InputSurface() argument
293 mStore(store), in InputSurface()
300 mConfigurable->init(store.get()); in InputSurface()
DConfigurable.cpp40 c2_status_t CachedConfigurable::init(ComponentStore* store) { in init() argument
43 c2_status_t validate = store->validateSupportedParams(mSupportedParams); in init()
DComponent.cpp310 const sp<ComponentStore>& store) : in ComponentInterface() argument
313 mInit = init(store.get()); in ComponentInterface()
412 const sp<ComponentStore>& store, in Component() argument
420 mStore(store), in Component()
424 mInit = init(store.get()); in Component()
/hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
DConfigurable.h59 c2_status_t init(ComponentStore* store);
103 c2_status_t init(ComponentStore* store) { in init()
104 return mIntf->init(store); in init()
DComponent.h60 const sp<ComponentStore>& store);
73 const sp<ComponentStore>& store,
DComponentStore.h56 ComponentStore(const std::shared_ptr<C2ComponentStore>& store);
/hardware/interfaces/media/omx/1.0/vts/functional/
DREADME.md4 …rrent directory contains the following folders: audio, common, component, store and video. Besides…
6 #### store :
7 Functionality of store is to enumerate all the omx components (and the roles it supports) available…
/hardware/google/interfaces/media/c2/1.0/
DIComponentStore.hal143 * Returns the list of components supported by this component store.
147 * @return traits List of component traits for all components supported by this store in no
164 * structures that this store is aware of.
167 * store must simply ignore all struct indices that it is not aware of.
189 * @return pool If the component store supports receiving buffers via
199 * The store must copy the contents of \p src into \p dst without changing
/hardware/interfaces/media/c2/1.0/
DIComponentStore.hal137 * Returns the list of components supported by this component store.
145 * this store (in no particular order).
171 * C2Param structure indices that this store is aware of.
174 * store must simply ignore all struct indices that it is not aware of.
210 * @return pool If the component store supports receiving buffers via
218 * store.
/hardware/google/av/media/codecs/cmds/
Dcodec2.cpp145 std::shared_ptr<C2AllocatorStore> store = GetCodec2PlatformAllocatorStore(); in SimplePlayer() local
146 CHECK_EQ(store->fetchAllocator(C2AllocatorStore::DEFAULT_LINEAR, &mAllocIon), C2_OK); in SimplePlayer()
214 std::shared_ptr<C2ComponentStore> store = GetCodec2PlatformComponentStore(); in play() local
216 (void)store->createComponent("c2.android.avc.decoder", &component); in play()
375 running.store(false); in play()
/hardware/google/av/codec2/vndk/include/
DC2PlatformSupport.h132 void SetPreferredCodec2ComponentStore(std::shared_ptr<C2ComponentStore> store);
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
Domx_vdec_extensions.hpp30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
Domx_vdec_extensions.hpp30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h224 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
/hardware/qcom/sm8150/media/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h224 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/inc/
Dvidc_vendor_extensions.h221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \

123