pthreads         1287 tools/perf/bench/numa.c 	pthread_t *pthreads;
pthreads         1306 tools/perf/bench/numa.c 	pthreads = zalloc(g->p.nr_threads * sizeof(pthread_t));
pthreads         1326 tools/perf/bench/numa.c 		ret = pthread_create(pthreads + t, NULL, worker_thread, td);
pthreads         1331 tools/perf/bench/numa.c                 ret = pthread_join(pthreads[t], NULL);
pthreads         1336 tools/perf/bench/numa.c 	free(pthreads);
pthreads          622 tools/perf/util/python.c static int pyrf_thread_map__init(struct pyrf_thread_map *pthreads,
pthreads          632 tools/perf/util/python.c 	pthreads->threads = thread_map__new(pid, tid, uid);
pthreads          633 tools/perf/util/python.c 	if (pthreads->threads == NULL)
pthreads          638 tools/perf/util/python.c static void pyrf_thread_map__delete(struct pyrf_thread_map *pthreads)
pthreads          640 tools/perf/util/python.c 	perf_thread_map__put(pthreads->threads);
pthreads          641 tools/perf/util/python.c 	Py_TYPE(pthreads)->tp_free((PyObject*)pthreads);
pthreads          646 tools/perf/util/python.c 	struct pyrf_thread_map *pthreads = (void *)obj;
pthreads          648 tools/perf/util/python.c 	return pthreads->threads->nr;
pthreads          653 tools/perf/util/python.c 	struct pyrf_thread_map *pthreads = (void *)obj;
pthreads          655 tools/perf/util/python.c 	if (i >= pthreads->threads->nr)
pthreads          658 tools/perf/util/python.c 	return Py_BuildValue("i", pthreads->threads->map[i]);
pthreads          812 tools/perf/util/python.c 	PyObject *pcpus = NULL, *pthreads = NULL;
pthreads          817 tools/perf/util/python.c 					 &pcpus, &pthreads, &group, &inherit))
pthreads          820 tools/perf/util/python.c 	if (pthreads != NULL)
pthreads          821 tools/perf/util/python.c 		threads = ((struct pyrf_thread_map *)pthreads)->threads;
pthreads          878 tools/perf/util/python.c 	PyObject *pcpus = NULL, *pthreads = NULL;
pthreads          882 tools/perf/util/python.c 	if (!PyArg_ParseTuple(args, "OO", &pcpus, &pthreads))
pthreads          885 tools/perf/util/python.c 	threads = ((struct pyrf_thread_map *)pthreads)->threads;