Home
last modified time | relevance | path

Searched defs:ProfileInfo (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/
Dsamples_record.h46 struct ProfileInfo { struct
47 uint64_t tid = 0;
48 uint64_t startTime = 0;
49 uint64_t stopTime = 0;
50 std::array<CpuProfileNode, MAX_NODE_COUNT> nodes;
51 int nodeCount = 0;
52 std::vector<int> samples;
53 std::vector<int> timeDeltas;
55 uint64_t gcTime = 0;
56 uint64_t cInterpreterTime = 0;
[all …]
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
Dsamples_record.h59 struct ProfileInfo { struct
60 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 …]
/arkcompiler/ets_runtime/ecmascript/napi/include/
Ddfx_jsnapi.h54 using ProfileInfo = ecmascript::ProfileInfo; variable