Lines Matching refs:mHandlerLooper

213             mBoottimeCollection.lastUptime = mHandlerLooper->now();  in start()
214 mHandlerLooper->setLooper(Looper::prepare(/*opts=*/0)); in start()
215 mHandlerLooper->sendMessage(this, EventType::BOOT_TIME_COLLECTION); in start()
230 mHandlerLooper->pollAll(/*timeoutMillis=*/-1); in start()
251 mHandlerLooper->removeMessages(this); in terminate()
252 mHandlerLooper->wake(); in terminate()
289 mBoottimeCollection.lastUptime = mHandlerLooper->now(); in onBootFinished()
290 mHandlerLooper->removeMessages(this); in onBootFinished()
291 mHandlerLooper->sendMessage(this, SwitchMessage::END_BOOTTIME_COLLECTION); in onBootFinished()
459 .lastUptime = mHandlerLooper->now(), in startCustomCollection()
463 mHandlerLooper->removeMessages(this); in startCustomCollection()
464 nsecs_t uptime = mHandlerLooper->now() + maxDuration.count(); in startCustomCollection()
465 mHandlerLooper->sendMessageAtTime(uptime, this, SwitchMessage::END_CUSTOM_COLLECTION); in startCustomCollection()
467 mHandlerLooper->sendMessage(this, EventType::CUSTOM_COLLECTION); in startCustomCollection()
478 mHandlerLooper->removeMessages(this); in endCustomCollection()
479 mHandlerLooper->sendMessage(this, SwitchMessage::END_CUSTOM_COLLECTION); in endCustomCollection()
510 mHandlerLooper->removeMessages(this); in handleMessage()
512 mPeriodicCollection.lastUptime = mHandlerLooper->now(); in handleMessage()
514 mHandlerLooper->sendMessage(this, EventType::PERIODIC_COLLECTION); in handleMessage()
517 mHandlerLooper->sendMessageAtTime(mPeriodicCollection.lastUptime, this, in handleMessage()
520 mPeriodicMonitor.lastUptime = mHandlerLooper->now() + mPeriodicMonitor.interval.count(); in handleMessage()
521 mHandlerLooper->sendMessageAtTime(mPeriodicMonitor.lastUptime, this, in handleMessage()
577 mHandlerLooper->removeMessages(this); in handleMessage()
578 mHandlerLooper->wake(); in handleMessage()
611 mHandlerLooper->sendMessageAtTime(metadata->lastUptime, this, metadata->eventType); in processCollectionEvent()
696 nsecs_t uptime = mHandlerLooper->now(); in processMonitorEvent()
701 mHandlerLooper->removeMessages(this, currCollectionMetadata->eventType); in processMonitorEvent()
702 mHandlerLooper->sendMessage(this, currCollectionMetadata->eventType); in processMonitorEvent()
721 mHandlerLooper->sendMessageAtTime(metadata->lastUptime, this, metadata->eventType); in processMonitorEvent()