Searched refs:idle_time (Results 1 – 7 of 7) sorted by relevance
| /xnu-12377.61.12/bsd/netinet/ |
| H A D | tcp_log.h | 103 …rn void tcp_log_keepalive(const char *func_name, int line_no, struct tcpcb *tp, int32_t idle_time); 199 #define TCP_LOG_KEEP_ALIVE(tp, idle_time) if (tcp_is_log_enabled(tp, TLEF_KEEP_ALIVE)) \ argument 200 tcp_log_keepalive(__func__, __LINE__, (tp), (idle_time))
|
| H A D | tcp_timer.c | 1024 int32_t rexmt, optlen = 0, idle_time = 0; in tcp_timers() local 1031 idle_time = tcp_now - tp->t_rcvtime; in tcp_timers() 1046 ((idle_time > 0) && (idle_time < TCP_CONN_MAXIDLE(tp)))) { in tcp_timers() 1443 (idle_time >= tcp_maxpersistidle || in tcp_timers() 1444 idle_time >= TCP_REXMTVAL(tp) * tcp_totbackoff)) || in tcp_timers() 1495 if (idle_time >= TCP_CONN_KEEPIDLE(tp) + TCP_CONN_MAXIDLE(tp)) { in tcp_timers() 1506 TCP_LOG_KEEP_ALIVE(tp, idle_time); in tcp_timers()
|
| H A D | tcp_log.c | 335 int32_t idle_time) in tcp_log_keepalive() argument 368 idle_time, tp->t_rtimo_probes, tp->t_adaptive_rtimo, in tcp_log_keepalive()
|
| H A D | tcp_output.c | 1039 int idle_time = 0; in tcp_output() local 1070 idle_time = tcp_now_local - tp->t_rcvtime; in tcp_output() 1071 if (idle && idle_time >= TCP_IDLETIMEOUT(tp)) { in tcp_output() 1075 idle_time >= TCP_CC_CWND_NONVALIDATED_PERIOD)) { in tcp_output()
|
| /xnu-12377.61.12/tools/lldbmacros/ |
| H A D | recount.py | 528 idle_time = pr.pr_recount.rpr_idle_time_mach 530 total_time = sum(times) + idle_time 532 idle_time = kern.GetNanotimeFromAbstime(idle_time) / 1e9 545 + plan.time_fmt().format(idle_time) 548 + " {:>7.2f}%".format(idle_time / total_time * 100)
|
| /xnu-12377.61.12/osfmk/kern/ |
| H A D | recount.c | 1247 uint64_t idle_time = pr->rpr_idle_time_mach; in recount_processor_usage() local 1254 idle_time += mach_absolute_time() - _state_time(idle_stamp); in recount_processor_usage() 1256 *idle_time_out = idle_time; in recount_processor_usage()
|
| H A D | processor.c | 807 uint64_t idle_time = 0; in processor_cpu_load_info() local 808 recount_processor_usage(&processor->pr_recount, &usage, &idle_time); in processor_cpu_load_info() 814 ticks[CPU_STATE_IDLE] += (uint32_t)(idle_time / hz_tick_interval); in processor_cpu_load_info()
|