Home
last modified time | relevance | path

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

/xnu-8020.121.3/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-8020.121.3/tools/lldbmacros/
H A Dscheduler.py1041 func_name = kern.Symbolicate(func)
1051 func_name = func_syms[0].GetName()
1054 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
1055 "IOTimerEventSource::timeoutSignaled" in func_name) :
1077 func_name = func_syms[0].GetName()
1079 func_name = str(FindKmodNameForAddr(func))
1088 if "filt_timerexpire" in func_name :
1097 if "mk_timer_expire" in func_name :
1103 if "workq_kill_old_threads_call" in func_name :
1111 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dxnu.py417 func_name = frame.GetFunctionName()
420 func_name = '%s [inlined]' % func_name if frame.IsInlined() else func_name
431 addr=load_addr, func=func_name, args=strargs)
434 addr=load_addr, func=func_name)
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 :
188 func_name, extra_string))
/xnu-8020.121.3/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()