/hardware/interfaces/audio/aidl/default/ |
D | EffectFactory.cpp | 39 Factory::Factory(const std::string& file) : mConfig(EffectConfig(file)) { in Factory() function in aidl::android::hardware::audio::effect::Factory 44 Factory::~Factory() { in ~Factory() 58 ndk::ScopedAStatus Factory::getDescriptorWithUuid_l(const AudioUuid& uuid, Descriptor* desc) { in getDescriptorWithUuid_l() 74 ndk::ScopedAStatus Factory::queryEffects(const std::optional<AudioUuid>& in_type_uuid, in queryEffects() 102 ndk::ScopedAStatus Factory::queryProcessing(const std::optional<Processing::Type>& in_type, in queryProcessing() 128 ndk::ScopedAStatus Factory::createEffect(const AudioUuid& in_impl_uuid, in createEffect() 159 ndk::ScopedAStatus Factory::destroyEffectImpl_l(const std::shared_ptr<IEffect>& in_handle) { in destroyEffectImpl_l() 184 void Factory::cleanupEffectMap_l() { in cleanupEffectMap_l() 194 ndk::ScopedAStatus Factory::destroyEffect(const std::shared_ptr<IEffect>& in_handle) { in destroyEffect() 202 bool Factory::openEffectLibrary(const AudioUuid& impl, in openEffectLibrary() [all …]
|
D | EffectMain.cpp | 63 ndk::SharedRefBase::make<aidl::android::hardware::audio::effect::Factory>(configFile); in main()
|
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/ |
D | ResilientBuffer.h | 37 using Factory = std::function<nn::GeneralResult<nn::SharedBuffer>()>; 39 static nn::GeneralResult<std::shared_ptr<const ResilientBuffer>> create(Factory makeBuffer); 41 explicit ResilientBuffer(PrivateConstructorTag tag, Factory makeBuffer, 55 const Factory kMakeBuffer;
|
D | ResilientExecution.h | 38 using Factory = std::function<nn::GeneralResult<nn::SharedExecution>()>; 41 Factory makeExecution); 43 ResilientExecution(PrivateConstructorTag tag, Factory makeExecution, 59 const Factory kMakeExecution;
|
D | ResilientBurst.h | 38 using Factory = std::function<nn::GeneralResult<nn::SharedBurst>()>; 40 static nn::GeneralResult<std::shared_ptr<const ResilientBurst>> create(Factory makeBurst); 42 ResilientBurst(PrivateConstructorTag tag, Factory makeBurst, nn::SharedBurst burst); 69 const Factory kMakeBurst;
|
D | ResilientPreparedModel.h | 38 using Factory = std::function<nn::GeneralResult<nn::SharedPreparedModel>()>; 41 Factory makePreparedModel); 43 explicit ResilientPreparedModel(PrivateConstructorTag tag, Factory makePreparedModel, 83 const Factory kMakePreparedModel;
|
D | ResilientDevice.h | 40 using Factory = std::function<nn::GeneralResult<nn::SharedDevice>(bool blocking)>; 42 static nn::GeneralResult<std::shared_ptr<const ResilientDevice>> create(Factory makeDevice); 44 explicit ResilientDevice(PrivateConstructorTag tag, Factory makeDevice, std::string name, 98 const Factory kMakeDevice;
|
/hardware/interfaces/audio/aidl/default/include/effectFactory-impl/ |
D | EffectFactory.h | 32 class Factory : public BnFactory { 34 explicit Factory(const std::string& file); 85 ~Factory();
|
/hardware/interfaces/neuralnetworks/utils/common/src/ |
D | ResilientPreparedModel.cpp | 69 Factory makePreparedModel) { in create() 81 Factory makePreparedModel, in ResilientPreparedModel() 144 ResilientExecution::Factory makeExecution = [preparedModel = std::move(self), request, measure, in createReusableExecution() 160 ResilientBurst::Factory makeBurst = in configureExecutionBurst()
|
D | ResilientBurst.cpp | 66 nn::GeneralResult<std::shared_ptr<const ResilientBurst>> ResilientBurst::create(Factory makeBurst) { in create() 77 ResilientBurst::ResilientBurst(PrivateConstructorTag /*tag*/, Factory makeBurst, in ResilientBurst() 126 ResilientExecution::Factory makeExecution = [burst = std::move(self), request, measure, in createReusableExecution()
|
D | ResilientBuffer.cpp | 63 Factory makeBuffer) { in create() 74 ResilientBuffer::ResilientBuffer(PrivateConstructorTag /*tag*/, Factory makeBuffer, in ResilientBuffer()
|
D | ResilientDevice.cpp | 69 Factory makeDevice) { in create() 88 ResilientDevice::ResilientDevice(PrivateConstructorTag /*tag*/, Factory makeDevice, in ResilientDevice() 187 ResilientPreparedModel::Factory makePreparedModel = [device = std::move(self), model, in prepareModel() 205 ResilientPreparedModel::Factory makePreparedModel = [device = std::move(self), deadline, in prepareModelFromCache() 221 ResilientBuffer::Factory makeBuffer = [device = std::move(self), desc, preparedModels, in allocate()
|
D | ResilientExecution.cpp | 67 Factory makeExecution) { in create() 78 ResilientExecution::ResilientExecution(PrivateConstructorTag /*tag*/, Factory makeExecution, in ResilientExecution()
|
/hardware/interfaces/neuralnetworks/1.0/utils/src/ |
D | Service.cpp | 29 hal::utils::ResilientDevice::Factory makeDevice = in getDevice()
|
/hardware/interfaces/neuralnetworks/1.2/utils/src/ |
D | Service.cpp | 29 hal::utils::ResilientDevice::Factory makeDevice = in getDevice()
|
/hardware/interfaces/neuralnetworks/1.1/utils/src/ |
D | Service.cpp | 29 hal::utils::ResilientDevice::Factory makeDevice = in getDevice()
|
/hardware/interfaces/neuralnetworks/1.3/utils/src/ |
D | Service.cpp | 29 hal::utils::ResilientDevice::Factory makeDevice = in getDevice()
|
/hardware/qcom/display/msm8998/sdm/include/utils/ |
D | factory.h | 40 class Factory {
|
/hardware/qcom/display/msm8909w_3100/sdm/include/utils/ |
D | factory.h | 40 class Factory {
|
/hardware/qcom/display/msm8909/sdm/include/utils/ |
D | factory.h | 40 class Factory {
|
/hardware/qcom/sm7250/display/sdm/include/utils/ |
D | factory.h | 40 class Factory {
|
/hardware/qcom/sm8150/display/sdm/include/utils/ |
D | factory.h | 40 class Factory {
|
/hardware/interfaces/neuralnetworks/aidl/utils/src/ |
D | Service.cpp | 61 hal::utils::ResilientDevice::Factory makeDevice = in getDevice()
|
/hardware/interfaces/wifi/1.3/ |
D | IWifiStaIface.hal | 53 * @return mac Factory MAC address of the Sta Interface
|
/hardware/interfaces/neuralnetworks/utils/common/test/ |
D | ResilientExecution.cpp | 67 const auto invalidExecutionFactory = ResilientExecution::Factory{}; in TEST()
|