HomeSort by relevance Sort by last modified time
    Searched refs:tmid (Results 1 - 2 of 2) sorted by null

  /art/runtime/
trace.cc 95 static TraceAction DecodeTraceAction(uint32_t tmid) {
96 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
99 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
101 return unique_methods_[tmid >> TraceActionBits];
121 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action; local
122 DCHECK_EQ(method, DecodeTraceMethod(tmid));
123 return tmid;
629 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); local
630 ArtMethod* method = DecodeTraceMethod(tmid);
981 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); local
    [all...]
trace.h 225 ArtMethod* DecodeTraceMethod(uint32_t tmid) LOCKS_EXCLUDED(unique_methods_lock_);

Completed in 42 milliseconds