Lines Matching refs:pyrf_event
40 offsetof(struct pyrf_event, event) + offsetof(struct type, member), \
45 offsetof(struct pyrf_event, sample) + offsetof(struct perf_sample, member), \
48 struct pyrf_event { struct
79 static PyObject *pyrf_mmap_event__repr(struct pyrf_event *pevent) in pyrf_mmap_event__repr()
101 .tp_basicsize = sizeof(struct pyrf_event),
121 static PyObject *pyrf_task_event__repr(struct pyrf_event *pevent) in pyrf_task_event__repr()
136 .tp_basicsize = sizeof(struct pyrf_event),
154 static PyObject *pyrf_comm_event__repr(struct pyrf_event *pevent) in pyrf_comm_event__repr()
165 .tp_basicsize = sizeof(struct pyrf_event),
183 static PyObject *pyrf_throttle_event__repr(struct pyrf_event *pevent) in pyrf_throttle_event__repr()
196 .tp_basicsize = sizeof(struct pyrf_event),
212 static PyObject *pyrf_lost_event__repr(struct pyrf_event *pevent) in pyrf_lost_event__repr()
231 .tp_basicsize = sizeof(struct pyrf_event),
247 static PyObject *pyrf_read_event__repr(struct pyrf_event *pevent) in pyrf_read_event__repr()
261 .tp_basicsize = sizeof(struct pyrf_event),
276 static PyObject *pyrf_sample_event__repr(struct pyrf_event *pevent) in pyrf_sample_event__repr()
293 .tp_basicsize = sizeof(struct pyrf_event),
349 struct pyrf_event *pevent; in pyrf_event__new()
357 pevent = PyObject_New(struct pyrf_event, ptype); in pyrf_event__new()
816 struct pyrf_event *pevent = (struct pyrf_event *)pyevent; in pyrf_evlist__read_on_cpu()