Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:ConfigEvent

50     class ConfigEvent {
52 ConfigEvent(int type) : mType(type) {}
53 virtual ~ConfigEvent() {}
63 class IoConfigEvent : public ConfigEvent {
66 ConfigEvent(CFG_EVENT_IO), mEvent(event), mParam(event) {}
81 class PrioConfigEvent : public ConfigEvent {
84 ConfigEvent(CFG_EVENT_PRIO), mPid(pid), mTid(tid), mPrio(prio) {}
302 // vector owns each ConfigEvent *, so must delete after removing
303 Vector<ConfigEvent *> mConfigEvents;