Home
last modified time | relevance | path

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

/linux/tools/perf/scripts/python/
H A Dsched-migration.py33 def thread_name(pid): function
53 return "%s gone to sleep" % thread_name(self.sleeper)
64 return "%s woke up" % thread_name(self.wakee)
75 return "new forked task %s" % thread_name(self.child)
86 return "task migrated in %s" % thread_name(self.new)
97 return "task migrated out %s" % thread_name(self.old)
278 raw += "%s \n" % thread_name(t)
/linux/drivers/md/dm-vdo/
H A Dfunnel-workqueue.c387 char thread_name[TASK_COMM_LEN]; in vdo_make_work_queue() local
429 snprintf(thread_name, sizeof(thread_name), "%s%u", name, i); in vdo_make_work_queue()
430 result = make_simple_work_queue(thread_name_prefix, thread_name, owner, in vdo_make_work_queue()
/linux/include/media/
H A Dvideobuf2-core.h1137 * @thread_name:the name of the thread. This will be prefixed with "vb2-".
1149 const char *thread_name);
/linux/drivers/media/common/videobuf2/
H A Dvideobuf2-core.c3276 const char *thread_name) in vb2_thread_start() argument
3299 threadio->thread = kthread_run(vb2_thread, q, "vb2-%s", thread_name); in vb2_thread_start()