/hardware/google/av/codec2/hidl/services/ |
D | C2SoftwareCodecServiceRegistrant.cpp | 27 android::sp<IComponentStore> store = in RegisterCodecServices() local 30 if (store == nullptr) { in RegisterCodecServices() 33 if (store->registerAsService("software") != android::OK) { in RegisterCodecServices()
|
D | vendor.cpp | 116 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/ |
D | gnss_hal_test.cpp | 160 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()
|
D | gnss_hal_test.h | 84 void store(const T& event); 269 void GnssHalTest::CallbackQueue<T>::store(const T& event) { in store() function
|
/hardware/interfaces/automotive/vehicle/2.0/default/ |
D | VehicleService.cpp | 31 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/ |
D | service.cpp | 34 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/ |
D | C2Store.cpp | 69 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/ |
D | ComponentStore.cpp | 65 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()
|
D | InputSurface.cpp | 289 const sp<ComponentStore>& store, in InputSurface() argument 293 mStore(store), in InputSurface() 300 mConfigurable->init(store.get()); in InputSurface()
|
D | Configurable.cpp | 40 c2_status_t CachedConfigurable::init(ComponentStore* store) { in init() argument 43 c2_status_t validate = store->validateSupportedParams(mSupportedParams); in init()
|
D | Component.cpp | 310 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/ |
D | Configurable.h | 59 c2_status_t init(ComponentStore* store); 103 c2_status_t init(ComponentStore* store) { in init() 104 return mIntf->init(store); in init()
|
D | Component.h | 60 const sp<ComponentStore>& store); 73 const sp<ComponentStore>& store,
|
D | ComponentStore.h | 56 ComponentStore(const std::shared_ptr<C2ComponentStore>& store);
|
/hardware/interfaces/media/omx/1.0/vts/functional/ |
D | README.md | 4 …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/ |
D | IComponentStore.hal | 143 * 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/ |
D | IComponentStore.hal | 137 * 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/ |
D | codec2.cpp | 145 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/ |
D | C2PlatformSupport.h | 132 void SetPreferredCodec2ComponentStore(std::shared_ptr<C2ComponentStore> store);
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/ |
D | omx_vdec_extensions.hpp | 30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/ |
D | omx_vdec_extensions.hpp | 30 void omx_vdec::init_vendor_extensions (VendorExtensionStore &store) { in init_vendor_extensions() argument
|
/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 224 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
|
/hardware/qcom/sm8150/media/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 224 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 221 store.add(VendorExtension((OMX_INDEXTYPE)_extIndex, _name, _dir, { \
|