Home
last modified time | relevance | path

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

/xnu-10063.141.1/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()
984 tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *format, ...) in tcp_log_message() argument
1027 func_name, line_no, \ in tcp_log_message()
[all …]
/xnu-10063.141.1/tools/lldbmacros/
H A Dscheduler.py1037 func_name = kern.Symbolicate(func)
1047 func_name = func_syms[0].GetName()
1050 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
1051 "IOTimerEventSource::timeoutSignaled" in func_name) :
1073 func_name = func_syms[0].GetName()
1075 func_name = str(FindKmodNameForAddr(func))
1084 if "filt_timerexpire" in func_name :
1093 if "mk_timer_expire" in func_name :
1099 if "workq_kill_old_threads_call" in func_name :
1107 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dmisc.py72 func_name = kern.Symbolicate(timer_call.tc_func)
83 func_name = func_sym.GetName()
86 if "thread_call_delayed_timer" in func_name :
95 if "thread_timer_expire" in func_name :
152 func_name, extra_string))
H A Dxnu.py588 func_name = frame.GetFunctionName()
591 func_name = '%s [inlined]' % func_name if frame.IsInlined() else func_name
602 addr=load_addr, func=func_name, args=strargs)
605 addr=load_addr, func=func_name)
/xnu-10063.141.1/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()