Searched refs:numSurroundFormats (Results 1 – 11 of 11) sorted by relevance
/frameworks/av/media/libaudioclient/ |
D | IAudioPolicyService.cpp | 955 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats, in getSurroundFormats() argument 960 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 && in getSurroundFormats() 966 unsigned int numSurroundFormatsReq = *numSurroundFormats; in getSurroundFormats() 971 *numSurroundFormats = reply.readUint32(); in getSurroundFormats() 974 if (numSurroundFormatsReq > *numSurroundFormats) { in getSurroundFormats() 975 numSurroundFormatsReq = *numSurroundFormats; in getSurroundFormats() 2072 unsigned int numSurroundFormats = numSurroundFormatsReq; in onTransact() local 2074 numSurroundFormats, sizeof(audio_format_t)); in onTransact() 2075 bool *surroundFormatsEnabled = (bool *)calloc(numSurroundFormats, sizeof(bool)); in onTransact() 2084 &numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported); in onTransact() [all …]
|
D | AudioSystem.cpp | 1395 status_t AudioSystem::getSurroundFormats(unsigned int *numSurroundFormats, in getSurroundFormats() argument 1403 numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported); in getSurroundFormats()
|
/frameworks/av/include/media/ |
D | IAudioPolicyService.h | 204 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
D | AudioSystem.h | 374 static status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
/frameworks/av/media/libaudioclient/include/media/ |
D | IAudioPolicyService.h | 204 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
/frameworks/base/core/jni/ |
D | android_media_AudioSystem.cpp | 2151 unsigned int numSurroundFormats = 0; in android_media_AudioSystem_getSurroundFormats() local 2155 &numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported); in android_media_AudioSystem_getSurroundFormats() 2161 if (numSurroundFormats == 0) { in android_media_AudioSystem_getSurroundFormats() 2165 surroundFormats = (audio_format_t *)calloc(numSurroundFormats, sizeof(audio_format_t)); in android_media_AudioSystem_getSurroundFormats() 2166 surroundFormatsEnabled = (bool *)calloc(numSurroundFormats, sizeof(bool)); in android_media_AudioSystem_getSurroundFormats() 2168 &numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported); in android_media_AudioSystem_getSurroundFormats() 2174 for (size_t i = 0; i < numSurroundFormats; i++) { in android_media_AudioSystem_getSurroundFormats()
|
/frameworks/av/services/audiopolicy/ |
D | AudioPolicyInterface.h | 250 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
/frameworks/av/services/audiopolicy/service/ |
D | AudioPolicyInterfaceImpl.cpp | 1223 status_t AudioPolicyService::getSurroundFormats(unsigned int *numSurroundFormats, in getSurroundFormats() argument 1233 return mAudioPolicyManager->getSurroundFormats(numSurroundFormats, surroundFormats, in getSurroundFormats()
|
D | AudioPolicyService.h | 237 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
/frameworks/av/services/audiopolicy/managerdefault/ |
D | AudioPolicyManager.h | 273 virtual status_t getSurroundFormats(unsigned int *numSurroundFormats,
|
D | AudioPolicyManager.cpp | 4005 status_t AudioPolicyManager::getSurroundFormats(unsigned int *numSurroundFormats, in getSurroundFormats() argument 4010 if (numSurroundFormats == NULL || (*numSurroundFormats != 0 && in getSurroundFormats() 4015 __func__, *numSurroundFormats, surroundFormats, surroundFormatsEnabled, reported); in getSurroundFormats() 4018 size_t formatsMax = *numSurroundFormats; in getSurroundFormats() 4045 *numSurroundFormats = formats.size(); in getSurroundFormats()
|