Home
last modified time | relevance | path

Searched refs:hwDevice (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/services/audioflinger/
DAudioHwDevice.h42 sp<DeviceHalInterface> hwDevice, in AudioHwDevice() argument
46 , mHwDevice(hwDevice) in AudioHwDevice()
60 sp<DeviceHalInterface> hwDevice() const { return mHwDevice; } in hwDevice() function
DPatchPanel.cpp205 sp<DeviceHalInterface> hwDevice = in createAudioPatch() local
206 audioflinger->mAudioHwDevs.valueAt(index)->hwDevice(); in createAudioPatch()
207 hwDevice->releaseAudioPatch(halHandle); in createAudioPatch()
347 sp<DeviceHalInterface> hwDevice = audioHwDevice->hwDevice(); in createAudioPatch() local
348 status = hwDevice->createAudioPatch(patch->num_sources, in createAudioPatch()
627 sp<DeviceHalInterface> hwDevice = audioHwDevice->hwDevice(); in releaseAudioPatch() local
628 status = hwDevice->releaseAudioPatch(removedPatch->mHalHandle); in releaseAudioPatch()
694 return audioHwDevice->hwDevice()->setAudioPortConfig(config); in setAudioPortConfig()
DAudioFlinger.cpp376 sp<DeviceHalInterface> dev = audioHwDevice->hwDevice(); in findSuitableHwDev_l()
533 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in dump()
901 dev->hwDevice()->setMasterVolume(value); in setMasterVolume()
938 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice(); in setMode()
969 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in setMicMute()
990 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in getMicMute()
1036 dev->hwDevice()->setMasterMute(muted); in setMasterMute()
1245 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in setParameters()
1320 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in getParameters()
1363 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice(); in getInputBufferSize()
[all …]
DAudioStreamOut.cpp51 return audioHwDev->hwDevice(); in hwDev()
DThreads.cpp3703 sp<DeviceHalInterface> hwDevice = mOutput->audioHwDev->hwDevice(); in createAudioPatch_l() local
3704 status = hwDevice->createAudioPatch(patch->num_sources, in createAudioPatch_l()
3753 sp<DeviceHalInterface> hwDevice = mOutput->audioHwDev->hwDevice(); in releaseAudioPatch_l() local
3754 status = hwDevice->releaseAudioPatch(handle); in releaseAudioPatch_l()
7808 sp<DeviceHalInterface> hwDevice = mInput->audioHwDev->hwDevice(); in createAudioPatch_l() local
7809 status = hwDevice->createAudioPatch(patch->num_sources, in createAudioPatch_l()
7848 sp<DeviceHalInterface> hwDevice = mInput->audioHwDev->hwDevice(); in releaseAudioPatch_l() local
7849 status = hwDevice->releaseAudioPatch(handle); in releaseAudioPatch_l()
7929 mHalStream(stream), mHalDevice(hwDev->hwDevice()), mAudioHwDev(hwDev), in MmapThread()
DAudioFlinger.h688 sp<DeviceHalInterface> hwDev() const { return audioHwDev->hwDevice(); } in hwDev()