Searched refs:IOProfile (Results 1 – 13 of 13) sorted by relevance
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
D | HwModule.h | 32 class IOProfile; variable 36 typedef Vector<sp<IOProfile> > InputProfileCollection; 37 typedef Vector<sp<IOProfile> > OutputProfileCollection; 38 typedef Vector<sp<IOProfile> > IOProfileCollection; 65 status_t addOutputProfile(const sp<IOProfile> &profile); 66 status_t addInputProfile(const sp<IOProfile> &profile); 67 status_t addProfile(const sp<IOProfile> &profile);
|
D | IOProfile.h | 33 class IOProfile : public AudioPort 36 IOProfile(const String8 &name, audio_port_role_t role) in IOProfile() function 110 class InputProfile : public IOProfile 113 InputProfile(const String8 &name) : IOProfile(name, AUDIO_PORT_ROLE_SINK) {} in InputProfile() 116 class OutputProfile : public IOProfile 119 OutputProfile(const String8 &name) : IOProfile(name, AUDIO_PORT_ROLE_SOURCE) {} in OutputProfile()
|
D | AudioInputDescriptor.h | 29 class IOProfile; variable 37 AudioInputDescriptor(const sp<IOProfile>& profile); 48 const sp<IOProfile> mProfile; // I/O profile this output derives from
|
D | AudioOutputDescriptor.h | 29 class IOProfile; variable 96 SwAudioOutputDescriptor(const sp<IOProfile>& profile, 123 const sp<IOProfile> mProfile; // I/O profile this output derives from
|
D | Serializer.h | 97 typedef IOProfile Element;
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | IOProfile.cpp | 30 bool IOProfile::isCompatibleProfile(audio_devices_t device, in isCompatibleProfile() 103 void IOProfile::dump(int fd) in dump() 117 void IOProfile::log() in log()
|
D | HwModule.cpp | 48 sp<IOProfile> profile = new OutputProfile(name); in addOutputProfile() 60 status_t HwModule::addOutputProfile(const sp<IOProfile> &profile) in addOutputProfile() 68 status_t HwModule::addInputProfile(const sp<IOProfile> &profile) in addInputProfile() 76 status_t HwModule::addProfile(const sp<IOProfile> &profile) in addProfile() 111 sp<IOProfile> profile = new InputProfile(name); in addInputProfile() 177 sp<IOProfile> stream = mInputProfiles[i]; in refreshSupportedDevices() 200 sp<IOProfile> stream = mOutputProfiles[i]; in refreshSupportedDevices()
|
D | ConfigParsingUtils.cpp | 155 sp<IOProfile> profile = new IOProfile(String8(root->name), role); in loadHwModuleProfile()
|
D | AudioInputDescriptor.cpp | 29 AudioInputDescriptor::AudioInputDescriptor(const sp<IOProfile>& profile) in AudioInputDescriptor()
|
D | AudioOutputDescriptor.cpp | 221 SwAudioOutputDescriptor::SwAudioOutputDescriptor(const sp<IOProfile>& profile, in SwAudioOutputDescriptor()
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/ |
D | Android.mk | 9 src/IOProfile.cpp \
|
/frameworks/av/services/audiopolicy/managerdefault/ |
D | AudioPolicyManager.cpp | 639 sp<IOProfile> AudioPolicyManager::getProfileForDirectOutput( in getProfileForDirectOutput() 653 sp<IOProfile> profile; in getProfileForDirectOutput() 660 sp<IOProfile> curProfile = mHwModules[i]->mOutputProfiles[j]; in getProfileForDirectOutput() 862 sp<IOProfile> profile; in getOutputForDevice() 1506 sp<IOProfile> profile; in getInputForDevice() 2350 sp<IOProfile> profile = getProfileForDirectOutput(AUDIO_DEVICE_NONE /*ignore device */, in isOffloadSupported() 3239 const sp<IOProfile> outProfile = mHwModules[i]->mOutputProfiles[j]; in AudioPolicyManager() 3317 const sp<IOProfile> inProfile = mHwModules[i]->mInputProfiles[j]; in AudioPolicyManager() 3678 SortedVector< sp<IOProfile> > profiles; in AudioPolicyManager() 3686 sp<IOProfile> profile = mHwModules[i]->mOutputProfiles[j]; in AudioPolicyManager() [all …]
|
D | AudioPolicyManager.h | 442 sp<IOProfile> getInputProfile(audio_devices_t device, 448 sp<IOProfile> getProfileForDirectOutput(audio_devices_t device,
|