Lines Matching refs:pevsel
691 static int pyrf_evsel__init(struct pyrf_evsel *pevsel, in pyrf_evsel__init() argument
796 evsel__init(&pevsel->evsel, &attr, idx); in pyrf_evsel__init()
800 static void pyrf_evsel__delete(struct pyrf_evsel *pevsel) in pyrf_evsel__delete() argument
802 perf_evsel__exit(&pevsel->evsel); in pyrf_evsel__delete()
803 Py_TYPE(pevsel)->tp_free((PyObject*)pevsel); in pyrf_evsel__delete()
806 static PyObject *pyrf_evsel__open(struct pyrf_evsel *pevsel, in pyrf_evsel__open() argument
809 struct evsel *evsel = &pevsel->evsel; in pyrf_evsel__open()
979 PyObject *pevsel; in pyrf_evlist__add() local
982 if (!PyArg_ParseTuple(args, "O", &pevsel)) in pyrf_evlist__add()
985 Py_INCREF(pevsel); in pyrf_evlist__add()
986 evsel = &((struct pyrf_evsel *)pevsel)->evsel; in pyrf_evlist__add()
1253 static PyObject *pyrf__tracepoint(struct pyrf_evsel *pevsel, in pyrf__tracepoint() argument