Lines Matching defs:SampleEntry
59 struct SampleEntry { struct
60 uint64_t time;
61 uint64_t period;
63 uint64_t accumulated_period;
64 uint64_t sample_count;
65 pid_t pid;
66 pid_t tid;
67 const char* thread_comm;
68 const MapEntry* map;
69 const Symbol* symbol;
70 uint64_t vaddr_in_file;
71 BranchFromEntry branch_from;
73 CallChainRoot<SampleEntry> callchain;
75 SampleEntry(uint64_t time, uint64_t period, uint64_t accumulated_period, in SampleEntry() argument
93 uint64_t GetPeriod() const { in GetPeriod()