Home
last modified time | relevance | path

Searched refs:pcpus (Results 1 – 1 of 1) sorted by relevance

/tools/perf/util/
Dpython.c369 static int pyrf_cpu_map__init(struct pyrf_cpu_map *pcpus, in pyrf_cpu_map__init() argument
379 pcpus->cpus = cpu_map__new(cpustr); in pyrf_cpu_map__init()
380 if (pcpus->cpus == NULL) in pyrf_cpu_map__init()
385 static void pyrf_cpu_map__delete(struct pyrf_cpu_map *pcpus) in pyrf_cpu_map__delete() argument
387 cpu_map__delete(pcpus->cpus); in pyrf_cpu_map__delete()
388 pcpus->ob_type->tp_free((PyObject*)pcpus); in pyrf_cpu_map__delete()
393 struct pyrf_cpu_map *pcpus = (void *)obj; in pyrf_cpu_map__length() local
395 return pcpus->cpus->nr; in pyrf_cpu_map__length()
400 struct pyrf_cpu_map *pcpus = (void *)obj; in pyrf_cpu_map__item() local
402 if (i >= pcpus->cpus->nr) in pyrf_cpu_map__item()
[all …]