Lines Matching defs:TraceEvent
32 struct TraceEvent { struct
33 char fPhase;
34 uint8_t fNumArgs;
35 uint32_t fSize;
37 const char* fName;
39 uint64_t fID;
40 uint64_t fClockBegin;
41 uint64_t fClockEnd;
42 SkThreadID fThreadID;
44 TraceEvent* next() { in next()
47 TraceEventArg* args() { return reinterpret_cast<TraceEventArg*>(this + 1); } in args()
48 char* stringTable() { return reinterpret_cast<char*>(this->args() + fNumArgs); } in stringTable()