Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/skywalk/nexus/netif/
H A Dnx_netif_poll.c492 char thread_name[MAXTHREADNAMESIZE]; in netif_rxpoll_compat_thread_func() local
499 bzero(thread_name, sizeof(thread_name)); in netif_rxpoll_compat_thread_func()
500 (void) snprintf(thread_name, sizeof(thread_name), in netif_rxpoll_compat_thread_func()
502 thread_set_thread_name(ifp->if_poll_thread, thread_name); in netif_rxpoll_compat_thread_func()
/xnu-8796.141.3/tools/lldbmacros/
H A Dscheduler.py198 thread_name = GetThreadName(thread)[-24:]
199 if len(thread_name) == 0:
200 thread_name = "<unnamed thread>"
201 …s} | 0x{:<16x} | {:>10d} | {:>10s} | {:>15s} | ".format("*", "*", "*", thread_name, thread, thread…
215 thread_name = GetThreadName(thread)[-24:]
216 if len(thread_name) == 0:
217 thread_name = "<unnamed thread>"
218 …s} | 0x{:<16x} | {:>10d} | {:>10s} | {:>15s} | ".format("*", "*", "*", thread_name, thread, thread…
401 thread_name = ""
406 thread_name = str(kern.GetValueFromAddress(unsigned(uthread.pth_name), 'char*'))
[all …]
H A Dprocess.py419 thread_name = GetThreadName(thread)
470 name=thread_name)
788 thread_name = GetThreadName(thread)
789 if thread_name:
790 process_name += ' (' + thread_name + ')'
H A DREADME.md68 … pri io_policy state wait_queue wait_event wmesg thread_name
253 … pri io_policy state wait_queue wait_event wmesg thread_name
/xnu-8796.141.3/osfmk/kern/
H A Dsyscall_subr.c203 mach_port_name_t thread_name = args->thread_name; in thread_switch() local
250 if (thread_name != MACH_PORT_NULL) { in thread_switch()
251 thread = port_name_to_thread(thread_name, ptt_options); in thread_switch()
H A Dsync_sema.c450 mach_port_name_t thread_name = args->thread_name; in semaphore_signal_thread_trap() local
460 if (thread_name != MACH_PORT_NULL) { in semaphore_signal_thread_trap()
461 thread = port_name_to_thread(thread_name, PORT_INTRANS_OPTIONS_NONE); in semaphore_signal_thread_trap()
/xnu-8796.141.3/osfmk/mach/
H A Dmach_traps.h136 mach_port_name_t thread_name);
316 mach_port_name_t thread_name,
494 PAD_ARG_(mach_port_name_t, thread_name);
626 PAD_ARG_(mach_port_name_t, thread_name);
/xnu-8796.141.3/bsd/net/
H A Ddlil.c3136 char thread_name[MAXTHREADNAMESIZE]; in dlil_input_thread_func() local
3149 bzero(thread_name, sizeof(thread_name)); in dlil_input_thread_func()
3150 (void) snprintf(thread_name, sizeof(thread_name), in dlil_input_thread_func()
3152 thread_set_thread_name(inp->dlth_thread, thread_name); in dlil_input_thread_func()
3278 char thread_name[MAXTHREADNAMESIZE]; in dlil_rxpoll_input_thread_func() local
3288 bzero(thread_name, sizeof(thread_name)); in dlil_rxpoll_input_thread_func()
3289 (void) snprintf(thread_name, sizeof(thread_name), in dlil_rxpoll_input_thread_func()
3291 thread_set_thread_name(inp->dlth_thread, thread_name); in dlil_rxpoll_input_thread_func()
4238 char thread_name[MAXTHREADNAMESIZE]; in ifnet_start_thread_func() local
4241 bzero(thread_name, sizeof(thread_name)); in ifnet_start_thread_func()
[all …]
/xnu-8796.141.3/bsd/skywalk/nexus/flowswitch/
H A Dfsw_dp.c1857 char thread_name[MAXTHREADNAMESIZE]; in fsw_rps_thread_func() local
1858 bzero(thread_name, sizeof(thread_name)); in fsw_rps_thread_func()
1859 (void) snprintf(thread_name, sizeof(thread_name), "fsw_rx_%s_%d", in fsw_rps_thread_func()
1861 thread_set_thread_name(frt->frt_thread, thread_name); in fsw_rps_thread_func()
1862 SK_D("%s spawned", thread_name); in fsw_rps_thread_func()