/openbmc/qemu/accel/ |
H A D | dummy-cpus.c | 69 char thread_name[VCPU_THREAD_NAME_SIZE]; in dummy_start_vcpu_thread() local 71 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/DUMMY", in dummy_start_vcpu_thread() 73 qemu_thread_create(cpu->thread, thread_name, dummy_cpu_thread_fn, cpu, in dummy_start_vcpu_thread()
|
/openbmc/qemu/target/i386/nvmm/ |
H A D | nvmm-accel-ops.c | 65 char thread_name[VCPU_THREAD_NAME_SIZE]; in nvmm_start_vcpu_thread() local 67 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/NVMM", in nvmm_start_vcpu_thread() 69 qemu_thread_create(cpu->thread, thread_name, qemu_nvmm_cpu_thread_fn, in nvmm_start_vcpu_thread()
|
/openbmc/qemu/accel/tcg/ |
H A D | tcg-accel-ops-mttcg.c | 135 char thread_name[VCPU_THREAD_NAME_SIZE]; in mttcg_start_vcpu_thread() local 141 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG", in mttcg_start_vcpu_thread() 144 qemu_thread_create(cpu->thread, thread_name, mttcg_cpu_thread_fn, in mttcg_start_vcpu_thread()
|
H A D | tcg-accel-ops-rr.c | 310 char thread_name[VCPU_THREAD_NAME_SIZE]; in rr_start_vcpu_thread() local 322 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "ALL CPUs/TCG"); in rr_start_vcpu_thread() 323 qemu_thread_create(cpu->thread, thread_name, in rr_start_vcpu_thread()
|
/openbmc/qemu/target/i386/whpx/ |
H A D | whpx-accel-ops.c | 65 char thread_name[VCPU_THREAD_NAME_SIZE]; in whpx_start_vcpu_thread() local 67 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/WHPX", in whpx_start_vcpu_thread() 69 qemu_thread_create(cpu->thread, thread_name, whpx_cpu_thread_fn, in whpx_start_vcpu_thread()
|
/openbmc/qemu/accel/kvm/ |
H A D | kvm-accel-ops.c | 67 char thread_name[VCPU_THREAD_NAME_SIZE]; in kvm_start_vcpu_thread() local 69 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/KVM", in kvm_start_vcpu_thread() 71 qemu_thread_create(cpu->thread, thread_name, kvm_vcpu_thread_fn, in kvm_start_vcpu_thread()
|
/openbmc/qemu/ |
H A D | iothread.c | 141 static void iothread_init_gcontext(IOThread *iothread, const char *thread_name) in iothread_init_gcontext() argument 144 g_autofree char *name = g_strdup_printf("%s aio-context", thread_name); in iothread_init_gcontext() 184 g_autofree char *thread_name = NULL; in iothread_init() local 193 thread_name = g_strdup_printf("IO %s", in iothread_init() 200 iothread_init_gcontext(iothread, thread_name); in iothread_init() 213 qemu_thread_create(&iothread->thread, thread_name, iothread_run, in iothread_init()
|
/openbmc/linux/tools/perf/scripts/python/ |
H A D | sched-migration.py | 33 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)
|
/openbmc/qemu/util/ |
H A D | thread-context.c | 251 char *thread_name; in thread_context_instance_complete() local 254 thread_name = g_strdup_printf("TC %s", in thread_context_instance_complete() 256 qemu_thread_create(&tc->thread, thread_name, thread_context_run, tc, in thread_context_instance_complete() 258 g_free(thread_name); in thread_context_instance_complete()
|
/openbmc/linux/drivers/staging/rtl8723bs/hal/ |
H A D | rtl8723bs_xmit.c | 415 u8 thread_name[20]; in rtl8723bs_xmit_thread() local 421 rtw_sprintf(thread_name, 20, "RTWHALXT-%s", ADPT_ARG(padapter)); in rtl8723bs_xmit_thread() 422 thread_enter(thread_name); in rtl8723bs_xmit_thread()
|
/openbmc/qemu/accel/hvf/ |
H A D | hvf-accel-ops.c | 464 char thread_name[VCPU_THREAD_NAME_SIZE]; in hvf_start_vcpu_thread() local 472 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/HVF", in hvf_start_vcpu_thread() 474 qemu_thread_create(cpu->thread, thread_name, hvf_cpu_thread_fn, in hvf_start_vcpu_thread()
|
/openbmc/linux/drivers/dma/ |
H A D | dmatest.c | 375 const char *thread_name = current->comm; in dmatest_mismatch() local 379 thread_name, index, expected, actual); in dmatest_mismatch() 383 thread_name, index, expected, actual); in dmatest_mismatch() 386 thread_name, index, expected, actual); in dmatest_mismatch() 389 thread_name, index, expected, actual); in dmatest_mismatch()
|
/openbmc/linux/include/media/ |
H A D | videobuf2-core.h | 1107 const char *thread_name);
|
/openbmc/linux/drivers/media/common/videobuf2/ |
H A D | videobuf2-core.c | 3020 const char *thread_name) in vb2_thread_start() argument 3043 threadio->thread = kthread_run(vb2_thread, q, "vb2-%s", thread_name); in vb2_thread_start()
|
/openbmc/u-boot/drivers/usb/gadget/ |
H A D | f_mass_storage.c | 2525 OR(cfg->thread_name, "file-storage")); in fsg_common_init()
|