OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConfigEvent
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/services/audioflinger/
Threads.h
82
class
ConfigEvent
: public RefBase {
84
virtual ~
ConfigEvent
() {}
96
ConfigEvent
(int type) : mType(type), mStatus(NO_ERROR), mWaitStatus(false), mData(NULL) {}
112
class IoConfigEvent : public
ConfigEvent
{
115
ConfigEvent
(CFG_EVENT_IO) {
135
class PrioConfigEvent : public
ConfigEvent
{
138
ConfigEvent
(CFG_EVENT_PRIO) {
156
class SetParameterConfigEvent : public
ConfigEvent
{
159
ConfigEvent
(CFG_EVENT_SET_PARAMETER) {
180
class CreateAudioPatchConfigEvent : public
ConfigEvent
{
[
all
...]
Threads.cpp
393
status_t AudioFlinger::ThreadBase::sendConfigEvent_l(sp<
ConfigEvent
>& event)
424
sp<
ConfigEvent
>
configEvent
= (
ConfigEvent
*)new IoConfigEvent(event, param);
425
sendConfigEvent_l(
configEvent
);
431
sp<
ConfigEvent
>
configEvent
= (
ConfigEvent
*)new PrioConfigEvent(pid, tid, prio);
432
sendConfigEvent_l(
configEvent
);
438
sp<
ConfigEvent
> configEvent = (ConfigEvent *)new SetParameterConfigEvent(keyValuePair)
[
all
...]
Completed in 224 milliseconds