Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/netinet/
H A Dtcp_log.h93 extern void tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp);
94 extern void tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, struct rtentry *rt…
95 extern void tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, int old_srtt, …
96 extern void tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, int32_t idle_ti…
97 extern void tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *forma…
98 extern void tcp_log_fsw_flow(const char *func_name, int line_no, struct tcpcb *tp, const char *form…
H A Dtcp_log.c224 tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp) in tcp_log_rtt_info() argument
248 func_name, line_no, in tcp_log_rtt_info()
257 tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rt_rtt() argument
285 func_name, line_no, in tcp_log_rt_rtt()
294 tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rtt_change() argument
327 func_name, line_no, in tcp_log_rtt_change()
338 tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_keepalive() argument
365 func_name, line_no, in tcp_log_keepalive()
902 tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *format, ...) in tcp_log_message() argument
943 func_name, line_no, \ in tcp_log_message()
[all …]
/xnu-8019.80.24/tools/lldbmacros/
H A Dscheduler.py1050 func_name = kern.Symbolicate(func)
1060 func_name = func_syms[0].GetName()
1063 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
1064 "IOTimerEventSource::timeoutSignaled" in func_name) :
1086 func_name = func_syms[0].GetName()
1088 func_name = str(FindKmodNameForAddr(func))
1097 if "filt_timerexpire" in func_name :
1106 if "mk_timer_expire" in func_name :
1112 if "workq_kill_old_threads_call" in func_name :
1120 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dmisc.py108 func_name = kern.Symbolicate(timer_call.tc_func)
119 func_name = func_sym.GetName()
122 if "thread_call_delayed_timer" in func_name :
131 if "thread_timer_expire" in func_name :
156 func_name, extra_string)
H A Dxnu.py403 func_name = frame.GetFunctionName()
406 func_name = '%s [inlined]' % func_name if frame.IsInlined() else func_name
414 func=func_name,
/xnu-8019.80.24/san/memory/
H A Dkasan_dynamic_blacklist.c29 const char *func_name; member
439 if (ble->func_name && funcname && strncmp(funcname, ble->func_name, 128) != 0) { in kasan_is_blacklisted()
488 ble->func_name = s; in add_blacklist_entry()