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()
630 sp<DeviceHalInterface> hwDevice = audioHwDevice->hwDevice(); in releaseAudioPatch() local
631 status = hwDevice->releaseAudioPatch(removedPatch->mHalHandle); in releaseAudioPatch()
697 return audioHwDevice->hwDevice()->setAudioPortConfig(config); in setAudioPortConfig()
DAudioFlinger.cpp365 sp<DeviceHalInterface> dev = audioHwDevice->hwDevice(); in findSuitableHwDev_l()
522 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in dump()
884 dev->hwDevice()->setMasterVolume(value); in setMasterVolume()
921 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice(); in setMode()
952 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in setMicMute()
973 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in getMicMute()
1006 dev->hwDevice()->setMasterMute(muted); in setMasterMute()
1185 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in setParameters()
1260 sp<DeviceHalInterface> dev = mAudioHwDevs.valueAt(i)->hwDevice(); in getParameters()
1303 sp<DeviceHalInterface> dev = mPrimaryHardwareDev->hwDevice(); in getInputBufferSize()
[all …]
DAudioStreamOut.cpp51 return audioHwDev->hwDevice(); in hwDev()
DThreads.cpp3506 sp<DeviceHalInterface> hwDevice = mOutput->audioHwDev->hwDevice(); in createAudioPatch_l() local
3507 status = hwDevice->createAudioPatch(patch->num_sources, in createAudioPatch_l()
3556 sp<DeviceHalInterface> hwDevice = mOutput->audioHwDev->hwDevice(); in releaseAudioPatch_l() local
3557 status = hwDevice->releaseAudioPatch(handle); in releaseAudioPatch_l()
7450 sp<DeviceHalInterface> hwDevice = mInput->audioHwDev->hwDevice(); in createAudioPatch_l() local
7451 status = hwDevice->createAudioPatch(patch->num_sources, in createAudioPatch_l()
7490 sp<DeviceHalInterface> hwDevice = mInput->audioHwDev->hwDevice(); in releaseAudioPatch_l() local
7491 status = hwDevice->releaseAudioPatch(handle); in releaseAudioPatch_l()
7571 mHalStream(stream), mHalDevice(hwDev->hwDevice()), mAudioHwDev(hwDev), in MmapThread()
DAudioFlinger.h707 sp<DeviceHalInterface> hwDev() const { return audioHwDev->hwDevice(); } in hwDev()