Home | History | Annotate | Download | only in util

Lines Matching refs:SID

29 #define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
121 struct perf_sample_id *sid = SID(evsel, cpu, thread);
123 sid->id = id;
124 sid->evsel = evsel;
125 hash = hash_64(sid->id, PERF_EVLIST__HLIST_BITS);
126 hlist_add_head(&sid->node, &evlist->heads[hash]);
160 struct perf_sample_id *sid;
169 hlist_for_each_entry(sid, pos, head, node)
170 if (sid->id == id)
171 return sid->evsel;