HomeSort by relevance Sort by last modified time
    Searched defs:IOProfile (Results 1 - 3 of 3) sorted by null

  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
IOProfile.h 28 // the IOProfile class describes the capabilities of an output or input stream.
33 class IOProfile : public AudioPort
36 IOProfile(const String8 &name, audio_port_role_t role)
110 class InputProfile : public IOProfile
113 InputProfile(const String8 &name) : IOProfile(name, AUDIO_PORT_ROLE_SINK) {}
116 class OutputProfile : public IOProfile
119 OutputProfile(const String8 &name) : IOProfile(name, AUDIO_PORT_ROLE_SOURCE) {}
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 503 AudioPolicyManagerBase::IOProfile *AudioPolicyManagerBase::getProfileForDirectOutput(
515 IOProfile *profile = mHwModules[i]->mOutputProfiles[j];
599 IOProfile *profile = NULL;
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 184 class IOProfile;
195 Vector <IOProfile *> mOutputProfiles; // output profiles exposed by this module
196 Vector <IOProfile *> mInputProfiles; // input profiles exposed by this module
199 // the IOProfile class describes the capabilities of an output or input stream.
204 class IOProfile
207 IOProfile(HwModule *module);
208 ~IOProfile();
254 AudioOutputDescriptor(const IOProfile *profile);
286 const IOProfile *mProfile; // I/O profile this output derives from
298 AudioInputDescriptor(const IOProfile *profile)
    [all...]

Completed in 316 milliseconds