Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioHwDevice.cpp99 bool AudioHwDevice::supportsAudioPatches() const { in supportsAudioPatches() function in android::AudioHwDevice
101 return mHwDevice->supportsAudioPatches(&result) == OK ? result : false; in supportsAudioPatches()
DAudioHwDevice.h86 bool supportsAudioPatches() const;
DPatchPanel.cpp128 if (!hwDevice->supportsAudioPatches()) { in getAudioPort()
237 !audioHwDevice->supportsAudioPatches()))) { in createAudioPatch()
DThreads.cpp4597 && !mOutput->audioHwDev->supportsAudioPatches(), in createAudioPatch_l()
4640 if (mOutput->audioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
4689 if (mOutput->audioHwDev->supportsAudioPatches()) { in releaseAudioPatch_l()
9299 if (mInput->audioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
9337 if (mInput->audioHwDev->supportsAudioPatches()) { in releaseAudioPatch_l()
10038 && !mAudioHwDev->supportsAudioPatches(), in createAudioPatch_l()
10074 if (mAudioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
10119 bool supportsAudioPatches = mHalDevice->supportsAudioPatches(&supportsAudioPatches) == OK ? in releaseAudioPatch_l() local
10120 supportsAudioPatches : false; in releaseAudioPatch_l()
10122 if (supportsAudioPatches) { in releaseAudioPatch_l()
/frameworks/av/media/libaudiohal/include/media/audiohal/
DDeviceHalInterface.h96 virtual status_t supportsAudioPatches(bool *supportsPatches) = 0;
/frameworks/av/media/libaudiohal/impl/
DDeviceHalHidl.h90 virtual status_t supportsAudioPatches(bool *supportsPatches);
DDeviceHalHidl.cpp346 status_t DeviceHalHidl::supportsAudioPatches(bool *supportsPatches) { in supportsAudioPatches() function in android::DeviceHalHidl
349 return processReturn("supportsAudioPatches", mDevice->supportsAudioPatches(), supportsPatches); in supportsAudioPatches()