Lines Matching refs:thread_clock_diff
355 uint32_t thread_clock_diff = 0; in CompareAndUpdateStackTrace() local
357 ReadClocks(thread, &thread_clock_diff, ×tamp_counter); in CompareAndUpdateStackTrace()
362 LogMethodTraceEvent(thread, *rit, kTraceMethodEnter, thread_clock_diff, timestamp_counter); in CompareAndUpdateStackTrace()
376 LogMethodTraceEvent(thread, *old_it, kTraceMethodExit, thread_clock_diff, timestamp_counter); in CompareAndUpdateStackTrace()
380 LogMethodTraceEvent(thread, *rit, kTraceMethodEnter, thread_clock_diff, timestamp_counter); in CompareAndUpdateStackTrace()
934 uint32_t thread_clock_diff = 0; in MethodEntered() local
936 ReadClocks(thread, &thread_clock_diff, ×tamp_counter); in MethodEntered()
937 LogMethodTraceEvent(thread, method, kTraceMethodEnter, thread_clock_diff, timestamp_counter); in MethodEntered()
944 uint32_t thread_clock_diff = 0; in MethodExited() local
946 ReadClocks(thread, &thread_clock_diff, ×tamp_counter); in MethodExited()
947 LogMethodTraceEvent(thread, method, kTraceMethodExit, thread_clock_diff, timestamp_counter); in MethodExited()
953 uint32_t thread_clock_diff = 0; in MethodUnwind() local
955 ReadClocks(thread, &thread_clock_diff, ×tamp_counter); in MethodUnwind()
956 LogMethodTraceEvent(thread, method, kTraceUnroll, thread_clock_diff, timestamp_counter); in MethodUnwind()
982 void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint64_t* timestamp_counter) { in ReadClocks() argument
990 *thread_clock_diff = thread->GetCpuMicroTime() - clock_base; in ReadClocks()
1011 uint32_t thread_clock_diff, in RecordStreamingMethodEvent() argument
1063 method_trace_buffer[current_index++] = thread_clock_diff; in RecordStreamingMethodEvent()
1172 uint32_t thread_clock_diff, in RecordMethodEvent() argument
1207 ptr, thread, EncodeTraceMethod(method), action, thread_clock_diff, wall_clock_diff); in RecordMethodEvent()
1213 uint32_t thread_clock_diff, in LogMethodTraceEvent() argument
1224 RecordStreamingMethodEvent(thread, method, action, thread_clock_diff, timestamp_counter); in LogMethodTraceEvent()
1226 RecordMethodEvent(thread, method, action, thread_clock_diff, timestamp_counter); in LogMethodTraceEvent()
1234 uint32_t thread_clock_diff, in EncodeEventEntry() argument
1243 Append4LE(ptr, thread_clock_diff); in EncodeEventEntry()