Home
last modified time | relevance | path

Searched refs:PERIODIC (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/evs/manager/1.1/stats/
DStatsCollector.cpp65 case CollectionEvent::PERIODIC: in handleMessage()
83 mCurrentCollectionEvent = CollectionEvent::PERIODIC; in handleMessage()
85 mLooper->sendMessage(this, CollectionEvent::PERIODIC); in handleMessage()
201 mCurrentCollectionEvent = CollectionEvent::PERIODIC; in startCollection()
212 mLooper->sendMessage(this, CollectionEvent::PERIODIC); in startCollection()
278 if (mCurrentCollectionEvent != CollectionEvent::PERIODIC) { in startCustomCollection()
282 << " != " << toString(CollectionEvent::PERIODIC) << " collection event"; in startCustomCollection()
410 case CollectionEvent::PERIODIC: in toString()
DStatsCollector.h44 PERIODIC, enumerator
/packages/services/Car/watchdog/server/src/
DIoPerfCollection.cpp581 if (mCurrCollectionEvent != CollectionEvent::PERIODIC) { in startCustomCollection()
585 << " != " << toString(CollectionEvent::PERIODIC) << " collection event"; in startCustomCollection()
640 mCurrCollectionEvent = CollectionEvent::PERIODIC; in handleMessage()
644 CollectionEvent::PERIODIC); in handleMessage()
647 case static_cast<int>(CollectionEvent::PERIODIC): in handleMessage()
648 result = processCollectionEvent(CollectionEvent::PERIODIC, &mPeriodicCollection); in handleMessage()
663 mCurrCollectionEvent = CollectionEvent::PERIODIC; in handleMessage()
665 mHandlerLooper->sendMessage(this, CollectionEvent::PERIODIC); in handleMessage()
DIoPerfCollection.h125 PERIODIC, enumerator
145 case CollectionEvent::PERIODIC: in toString()
/packages/services/Car/watchdog/server/tests/
DIoPerfCollectionTest.cpp1060 ASSERT_EQ(collector->mCurrCollectionEvent, CollectionEvent::PERIODIC); in TEST()