Home
last modified time | relevance | path

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

/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/
DTransitionsTraceParser.kt97 createTime = args.getChild("create_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
98 sendTime = args.getChild("send_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
99 abortTime = args.getChild("wm_abort_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
100 finishTime = args.getChild("finish_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
105 ?.toTimestamp(), in <lambda>()
128 dispatchTime = args.getChild("dispatch_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
130 args.getChild("merge_request_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
131 mergeTime = args.getChild("merge_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
132 abortTime = args.getChild("shell_abort_time_ns")?.getLong()?.toTimestamp(), in <lambda>()
139 private fun Long.toTimestamp() = in <lambda>() method
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/
DWmTransitionTraceParser.kt110 createTime = entry.createTimeNs.toTimestamp(), in doParseEntry()
111 sendTime = entry.sendTimeNs.toTimestamp(), in doParseEntry()
112 abortTime = entry.abortTimeNs.toTimestamp(), in doParseEntry()
113 finishTime = entry.finishTimeNs.toTimestamp(), in doParseEntry()
114 startingWindowRemoveTime = entry.startingWindowRemoveTimeNs.toTimestamp(), in doParseEntry()
128 private fun Long.toTimestamp() = in Long() method in android.tools.traces.parsers.wm.WmTransitionTraceParser