Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/
H A Dtcp_log.h94 extern void tcp_log_connection_summary(const char *func_name, int line_no, struct tcpcb *tp);
100 extern void tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp);
101 extern void tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, struct rtentry *rt…
102 extern void tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, int old_srtt, …
103 extern void tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, int32_t idle_ti…
104 extern void tcp_log_message(const char *func_name, int line_no, struct tcpcb *tp, const char *forma…
105 extern void tcp_log_fsw_flow(const char *func_name, int line_no, struct tcpcb *tp, const char *form…
106 extern void tcp_log_state_change(const char *func_name, int line_no, struct tcpcb *tp, int new_stat…
107 extern void tcp_log_output(const char *func_name, int line_no, struct tcpcb *tp, const char *format…
H A Dtcp_log.c220 tcp_log_rtt_info(const char *func_name, int line_no, struct tcpcb *tp) in tcp_log_rtt_info() argument
244 func_name, line_no, in tcp_log_rtt_info()
253 tcp_log_rt_rtt(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rt_rtt() argument
281 func_name, line_no, in tcp_log_rt_rtt()
290 tcp_log_rtt_change(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_rtt_change() argument
323 func_name, line_no, in tcp_log_rtt_change()
334 tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, in tcp_log_keepalive() argument
362 func_name, line_no, in tcp_log_keepalive()
566 tcp_log_connection_summary(const char *func_name, int line_no, struct tcpcb *tp) in tcp_log_connection_summary() argument
639 func_name, line_no, \ in tcp_log_connection_summary()
[all …]
H A Dudp_log.h68 extern void udp_log_message(const char *func_name, int line_no, struct inpcb *inp, const char *form…
H A Dudp_log.c399 udp_log_message(const char *func_name, int line_no, struct inpcb *inp, const char *format, ...) in udp_log_message() argument
443 func_name, line_no, \ in udp_log_message()
/xnu-12377.1.9/tools/lldbmacros/
H A Dscheduler.py977 func_name = kern.Symbolicate(func)
987 func_name = func_syms[0].GetName()
990 if ("IOTimerEventSource::timeoutAndRelease" in func_name or
991 "IOTimerEventSource::timeoutSignaled" in func_name) :
1013 func_name = func_syms[0].GetName()
1015 func_name = str(FindKmodNameForAddr(func))
1024 if "filt_timerexpire" in func_name :
1033 if "mk_timer_expire" in func_name :
1039 if "workq_kill_old_threads_call" in func_name :
1047 if ("workq_add_new_threads_call" in func_name or
[all …]
H A Dmisc.py73 func_name = kern.Symbolicate(timer_call.tc_func)
84 func_name = func_sym.GetName()
87 if "thread_call_delayed_timer" in func_name :
95 if "thread_timer_expire" in func_name :
152 func_name, extra_string))
H A Dprocess.py1273 func_name = frame.GetFunctionName()
1279 if regex.search(func_name) or matching_argument:
1553 func_name = frame.GetFunctionName()
1559 if filter_regex.match(func_name) or matching_argument:
1563 callers[func_name] = callers.get(func_name, CallChainNode({}, []))
1566 prev_func_name = func_name
H A Dxnu.py602 func_name = f"{frame.GetFunctionName()}{inlined_suffix}"
/xnu-12377.1.9/san/memory/
H A Dkasan_dynamic_denylist.c29 const char *func_name; member
439 if (dle->func_name && funcname && strncmp(funcname, dle->func_name, 128) != 0) { in kasan_is_denylisted()
488 dle->func_name = s; in add_denylist_entry()