Searched defs:ProfileInfo (Results 1 – 2 of 2) sorted by relevance
59 struct ProfileInfo { struct60 uint64_t tid = 0;61 uint64_t startTime = 0;62 uint64_t stopTime = 0;63 struct CpuProfileNode nodes[MAX_NODE_COUNT];64 int nodeCount = 0;65 CVector<int> samples;66 CVector<int> timeDeltas;68 uint64_t gcTime = 0;69 uint64_t cInterpreterTime = 0;[all …]
49 using ProfileInfo = ecmascript::ProfileInfo; variable