Searched defs:ProfileInfo (Results 1 – 2 of 2) sorted by relevance
91 struct ProfileInfo { struct92 uint64_t tid = 0;93 uint64_t startTime = 0;94 uint64_t stopTime = 0;95 struct CpuProfileNode nodes[MAX_NODE_COUNT];96 int nodeCount = 0;97 CVector<int> samples;98 CVector<int> timeDeltas;100 uint64_t gcTime = 0;101 uint64_t cInterpreterTime = 0;[all …]
42 using ProfileInfo = ecmascript::ProfileInfo; variable