Home
last modified time | relevance | path

Searched refs:CounterSliceEvent (Results 1 – 2 of 2) sorted by relevance

/tools/trebuchet/core/common/src/main/kotlin/trebuchet/importers/ftrace/events/
DTraceMarkerEvent.kt39 class CounterSliceEvent(val tgid: Int, val name: String, val value: Long) : FtraceEventDetails { class
70 private fun BufferReader.readCounter(): CounterSliceEvent { in readCounter()
78 return CounterSliceEvent(tgid, name, value) in readCounter()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/importers/ftrace/
DTracingMarkerEventTest.kt36 val counter = detailsFor<CounterSliceEvent>("tracing_mark_write: C|42|myCounter|9001") in testCounter()