Home
last modified time | relevance | path

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

/xnu-10002.41.9/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…
100 extern void tcp_log_output(const char *func_name, int line_no, struct tcpcb *tp, const char *format…
H A Dtcp_log.c223 tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp) in tcp_log_rtt_info() argument
247 func_name, line_no, in tcp_log_rtt_info()
256 tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rt_rtt() argument
284 func_name, line_no, in tcp_log_rt_rtt()
293 tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rtt_change() argument
326 func_name, line_no, in tcp_log_rtt_change()
337 tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_keepalive() argument
364 func_name, line_no, in tcp_log_keepalive()
979 tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *format, ...) in tcp_log_message() argument
1022 func_name, line_no, \ in tcp_log_message()
[all …]
/xnu-10002.41.9/tools/lldbmacros/
H A Dscheduler.py1043 func_name = kern.Symbolicate(func)
1053 func_name = func_syms[0].GetName()
1056 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
1057 "IOTimerEventSource::timeoutSignaled" in func_name) :
1079 func_name = func_syms[0].GetName()
1081 func_name = str(FindKmodNameForAddr(func))
1090 if "filt_timerexpire" in func_name :
1099 if "mk_timer_expire" in func_name :
1105 if "workq_kill_old_threads_call" in func_name :
1113 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dmisc.py78 func_name = kern.Symbolicate(timer_call.tc_func)
89 func_name = func_sym.GetName()
92 if "thread_call_delayed_timer" in func_name :
101 if "thread_timer_expire" in func_name :
158 func_name, extra_string))
H A Dxnu.py589 func_name = frame.GetFunctionName()
592 func_name = '%s [inlined]' % func_name if frame.IsInlined() else func_name
603 addr=load_addr, func=func_name, args=strargs)
606 addr=load_addr, func=func_name)
/xnu-10002.41.9/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()