Home
last modified time | relevance | path

Searched refs:hwDev (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/services/audioflinger/datapath/
DAudioStreamOut.cpp43 sp<DeviceHalInterface> AudioStreamOut::hwDev() const in hwDev() function in android::AudioStreamOut
104 int status = hwDev()->openOutputStream( in open()
121 status = hwDev()->openOutputStream( in open()
DAudioStreamIn.cpp42 sp<DeviceHalInterface> AudioStreamIn::hwDev() const in hwDev() function in android::AudioStreamIn
85 int status = hwDev()->openInputStream( in open()
DAudioStreamOut.h42 [[nodiscard]] sp<DeviceHalInterface> hwDev() const;
DAudioStreamIn.h43 [[nodiscard]] sp<DeviceHalInterface> hwDev() const;
/frameworks/av/services/audioflinger/
DIAfThread.h680 AudioHwDevice* hwDev, AudioStreamOut* output, bool systemReady);
689 AudioHwDevice* hwDev, AudioStreamIn* input, bool systemReady);
DThreads.h2204 AudioHwDevice *hwDev, const sp<StreamHalInterface>& stream, bool systemReady,
2353 AudioHwDevice *hwDev, AudioStreamOut *output, bool systemReady);
2427 AudioHwDevice *hwDev, AudioStreamIn *input, bool systemReady);
DThreads.cpp10180 AudioHwDevice *hwDev, const sp<StreamHalInterface>& stream, bool systemReady, bool isOut) in MmapThread() argument
10184 mHalStream(stream), mHalDevice(hwDev->hwDevice()), mAudioHwDev(hwDev), in MmapThread()
10958 AudioHwDevice* hwDev, AudioStreamOut* output, bool systemReady) { in create() argument
10959 return sp<MmapPlaybackThread>::make(afThreadCallback, id, hwDev, output, systemReady); in create()
10964 AudioHwDevice *hwDev, AudioStreamOut *output, bool systemReady) in MmapPlaybackThread() argument
10965 : MmapThread(afThreadCallback, id, hwDev, output->stream, systemReady, true /* isOut */), in MmapPlaybackThread()
11259 AudioHwDevice* hwDev, AudioStreamIn* input, bool systemReady) { in create() argument
11260 return sp<MmapCaptureThread>::make(afThreadCallback, id, hwDev, input, systemReady); in create()
11265 AudioHwDevice *hwDev, AudioStreamIn *input, bool systemReady) in MmapCaptureThread() argument
11266 : MmapThread(afThreadCallback, id, hwDev, input->stream, systemReady, false /* isOut */), in MmapCaptureThread()