Home
last modified time | relevance | path

Searched refs:DeviceEffectProxy (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/services/audioflinger/
DDeviceEffectManager.cpp79 sp<DeviceEffectProxy> effect; in createEffect_l()
95 effect = new DeviceEffectProxy(device, mMyCallback, in createEffect_l()
163 size_t AudioFlinger::DeviceEffectManager::removeEffect(const sp<DeviceEffectProxy>& effect) in removeEffect()
177 sp<DeviceEffectProxy> effect = effectBase->asDeviceEffectProxy(); in disconnectEffectHandle()
DEffects.cpp2940 status_t AudioFlinger::DeviceEffectProxy::setEnabled(bool enabled, bool fromHandle) in setEnabled()
2957 status_t AudioFlinger::DeviceEffectProxy::init( in init()
2980 status_t AudioFlinger::DeviceEffectProxy::onCreatePatch( in onCreatePatch()
3001 status_t AudioFlinger::DeviceEffectProxy::checkPort(const PatchPanel::Patch& patch, in checkPort()
3066 void AudioFlinger::DeviceEffectProxy::onReleasePatch(audio_patch_handle_t patchHandle) { in onReleasePatch()
3072 size_t AudioFlinger::DeviceEffectProxy::removeEffect(const sp<EffectModule>& effect) in removeEffect()
3082 status_t AudioFlinger::DeviceEffectProxy::addEffectToHal( in addEffectToHal()
3091 status_t AudioFlinger::DeviceEffectProxy::removeEffectFromHal( in removeEffectFromHal()
3100 bool AudioFlinger::DeviceEffectProxy::isOutput() const { in isOutput()
3107 uint32_t AudioFlinger::DeviceEffectProxy::sampleRate() const { in sampleRate()
[all …]
DEffects.h162 virtual sp<DeviceEffectProxy> asDeviceEffectProxy() { return nullptr; } in asDeviceEffectProxy()
631 class DeviceEffectProxy : public EffectBase {
633 DeviceEffectProxy (const AudioDeviceTypeAddr& device, in DeviceEffectProxy() function
638 mMyCallback(new ProxyCallback(wp<DeviceEffectProxy>(this), in DeviceEffectProxy()
642 sp<DeviceEffectProxy> asDeviceEffectProxy() override { return this; } in asDeviceEffectProxy()
667 ProxyCallback(const wp<DeviceEffectProxy>& owner, in ProxyCallback()
710 const wp<DeviceEffectProxy> mProxy;
DDeviceEffectManager.h44 size_t removeEffect(const sp<DeviceEffectProxy>& effect);
142 std::map<AudioDeviceTypeAddr, sp<DeviceEffectProxy>> mDeviceEffects;
DAudioFlinger.h559 class DeviceEffectProxy; variable