Home
last modified time | relevance | path

Searched refs:ConfigEvent (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/
DThreads.h82 class ConfigEvent: public RefBase {
84 virtual ~ConfigEvent() {} in ~ConfigEvent()
96 ConfigEvent(int type) : mType(type), mStatus(NO_ERROR), mWaitStatus(false), mData(NULL) {} in ConfigEvent() function
112 class IoConfigEvent : public ConfigEvent {
115 ConfigEvent(CFG_EVENT_IO) { in IoConfigEvent()
135 class PrioConfigEvent : public ConfigEvent {
138 ConfigEvent(CFG_EVENT_PRIO) { in PrioConfigEvent()
156 class SetParameterConfigEvent : public ConfigEvent {
159 ConfigEvent(CFG_EVENT_SET_PARAMETER) { in SetParameterConfigEvent()
180 class CreateAudioPatchConfigEvent : public ConfigEvent {
[all …]
DThreads.cpp393 status_t AudioFlinger::ThreadBase::sendConfigEvent_l(sp<ConfigEvent>& event) in sendConfigEvent_l()
424 sp<ConfigEvent> configEvent = (ConfigEvent *)new IoConfigEvent(event, param); in sendIoConfigEvent_l()
431 sp<ConfigEvent> configEvent = (ConfigEvent *)new PrioConfigEvent(pid, tid, prio); in sendPrioConfigEvent_l()
438 sp<ConfigEvent> configEvent = (ConfigEvent *)new SetParameterConfigEvent(keyValuePair); in sendSetParameterConfigEvent_l()
447 sp<ConfigEvent> configEvent = (ConfigEvent *)new CreateAudioPatchConfigEvent(*patch, *handle); in sendCreateAudioPatchConfigEvent()
461 sp<ConfigEvent> configEvent = (ConfigEvent *)new ReleaseAudioPatchConfigEvent(handle); in sendReleaseAudioPatchConfigEvent()
473 sp<ConfigEvent> event = mConfigEvents[0]; in processConfigEvents_l()