Home
last modified time | relevance | path

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

/xnu-8792.81.2/bsd/netinet/
H A Dtcp_log.h94 extern void tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp);
95 extern void tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, struct rtentry *rt…
96 extern void tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, int old_srtt, …
97 extern void tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, int32_t idle_ti…
98 extern void tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *forma…
99 extern void tcp_log_fsw_flow(const char *func_name, int line_no, struct tcpcb *tp, const char *form…
101 extern void tcp_log_output(const char *func_name, int line_no, struct tcpcb *tp, const char *format…
H A Dtcp_log.c231 tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp) in tcp_log_rtt_info() argument
255 func_name, line_no, in tcp_log_rtt_info()
264 tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rt_rtt() argument
292 func_name, line_no, in tcp_log_rt_rtt()
301 tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rtt_change() argument
334 func_name, line_no, in tcp_log_rtt_change()
345 tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_keepalive() argument
372 func_name, line_no, in tcp_log_keepalive()
925 tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *format, ...) in tcp_log_message() argument
968 func_name, line_no, \ in tcp_log_message()
[all …]
/xnu-8792.81.2/tools/lldbmacros/
H A Dscheduler.py1042 func_name = kern.Symbolicate(func)
1052 func_name = func_syms[0].GetName()
1055 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
1056 "IOTimerEventSource::timeoutSignaled" in func_name) :
1078 func_name = func_syms[0].GetName()
1080 func_name = str(FindKmodNameForAddr(func))
1089 if "filt_timerexpire" in func_name :
1098 if "mk_timer_expire" in func_name :
1104 if "workq_kill_old_threads_call" in func_name :
1112 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dmisc.py77 func_name = kern.Symbolicate(timer_call.tc_func)
88 func_name = func_sym.GetName()
91 if "thread_call_delayed_timer" in func_name :
100 if "thread_timer_expire" in func_name :
157 func_name, extra_string))
H A Dxnu.py427 func_name = frame.GetFunctionName()
430 func_name = '%s [inlined]' % func_name if frame.IsInlined() else func_name
441 addr=load_addr, func=func_name, args=strargs)
444 addr=load_addr, func=func_name)
/xnu-8792.81.2/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()