Lines Matching refs:EventLog
29 ANDROID_SINGLETON_STATIC_INSTANCE(EventLog) in ANDROID_SINGLETON_STATIC_INSTANCE() argument
32 EventLog::EventLog() { in ANDROID_SINGLETON_STATIC_INSTANCE()
35 void EventLog::doLogFrameDurations(const std::string_view& name, const int32_t* durations, in doLogFrameDurations()
37 EventLog::TagBuffer buffer(LOGTAG_SF_FRAME_DUR); in doLogFrameDurations()
47 void EventLog::logFrameDurations(const std::string_view& name, const int32_t* durations, in logFrameDurations()
49 EventLog::getInstance().doLogFrameDurations(name, durations, numDurations); in logFrameDurations()
54 EventLog::TagBuffer::TagBuffer(int32_t tag) in TagBuffer()
58 void EventLog::TagBuffer::log() { in log()
69 void EventLog::TagBuffer::startList(int8_t count) { in startList()
81 void EventLog::TagBuffer::endList() { in endList()
92 void EventLog::TagBuffer::writeInt32(int32_t value) { in writeInt32()
104 void EventLog::TagBuffer::writeInt64(int64_t value) { in writeInt64()
116 void EventLog::TagBuffer::writeString(const std::string_view& value) { in writeString()