Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioHwDevice.cpp96 bool AudioHwDevice::supportsAudioPatches() const { in supportsAudioPatches() function in android::AudioHwDevice
98 return mHwDevice->supportsAudioPatches(&result) == OK ? result : false; in supportsAudioPatches()
DAudioHwDevice.h84 bool supportsAudioPatches() const;
DPatchPanel.cpp128 if (!hwDevice->supportsAudioPatches()) { in getAudioPort()
237 !audioHwDevice->supportsAudioPatches()))) { in createAudioPatch()
DThreads.cpp4309 && !mOutput->audioHwDev->supportsAudioPatches(), in createAudioPatch_l()
4352 if (mOutput->audioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
4413 if (mOutput->audioHwDev->supportsAudioPatches()) { in releaseAudioPatch_l()
8801 if (mInput->audioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
8851 if (mInput->audioHwDev->supportsAudioPatches()) { in releaseAudioPatch_l()
9544 && !mAudioHwDev->supportsAudioPatches(), in createAudioPatch_l()
9580 if (mAudioHwDev->supportsAudioPatches()) { in createAudioPatch_l()
9636 bool supportsAudioPatches = mHalDevice->supportsAudioPatches(&supportsAudioPatches) == OK ? in releaseAudioPatch_l() local
9637 supportsAudioPatches : false; in releaseAudioPatch_l()
9639 if (supportsAudioPatches) { in releaseAudioPatch_l()
/frameworks/av/media/libaudiohal/include/media/audiohal/
DDeviceHalInterface.h93 virtual status_t supportsAudioPatches(bool *supportsPatches) = 0;
/frameworks/av/media/libaudiohal/impl/
DDeviceHalLocal.h87 virtual status_t supportsAudioPatches(bool *supportsPatches);
DDeviceHalHidl.h94 virtual status_t supportsAudioPatches(bool *supportsPatches);
DDeviceHalHidl.cpp297 status_t DeviceHalHidl::supportsAudioPatches(bool *supportsPatches) { in supportsAudioPatches() function in android::CPP_VERSION::DeviceHalHidl
299 return processReturn("supportsAudioPatches", mDevice->supportsAudioPatches(), supportsPatches); in supportsAudioPatches()
DDeviceHalLocal.cpp152 status_t DeviceHalLocal::supportsAudioPatches(bool *supportsPatches) { in supportsAudioPatches() function in android::CPP_VERSION::DeviceHalLocal