• Home
  • Raw
  • Download

Lines Matching full:show

96 static void cec_pin_rx_start_bit_was_high(bool is_high, __u64 usecs, __u64 usecs_min, bool show)  in cec_pin_rx_start_bit_was_high()  argument
100 if (is_high && show) in cec_pin_rx_start_bit_was_high()
102 else if (low_usecs + usecs > CEC_TIM_START_BIT_TOTAL_MAX && show) in cec_pin_rx_start_bit_was_high()
107 if (show) in cec_pin_rx_start_bit_was_high()
112 if (low_usecs + usecs < CEC_TIM_START_BIT_TOTAL_MIN - CEC_TIM_MARGIN && show) in cec_pin_rx_start_bit_was_high()
127 static void cec_pin_rx_start_bit_was_low(__u64 ev_ts, __u64 usecs, __u64 usecs_min, bool show) in cec_pin_rx_start_bit_was_low() argument
129 if (usecs_min > CEC_TIM_START_BIT_LOW_MAX && show) in cec_pin_rx_start_bit_was_low()
134 if (show) in cec_pin_rx_start_bit_was_low()
149 __u64 usecs, __u64 usecs_min, bool show) in cec_pin_rx_data_bit_was_high() argument
154 if (is_high && rx_bit < 9 && show) in cec_pin_rx_data_bit_was_high()
156 else if (rx_bit < 9 && show && in cec_pin_rx_data_bit_was_high()
160 if (low_usecs + usecs < CEC_TIM_DATA_BIT_TOTAL_MIN - CEC_TIM_MARGIN && show) in cec_pin_rx_data_bit_was_high()
186 if (show) in cec_pin_rx_data_bit_was_high()
192 if (!eom_reached && is_high && !eom && ack && show) in cec_pin_rx_data_bit_was_high()
194 else if (!is_high && !period_too_long && verbose && show) in cec_pin_rx_data_bit_was_high()
201 if (show && eom && msg.len > 2) { in cec_pin_rx_data_bit_was_high()
214 if (show) in cec_pin_rx_data_bit_was_high()
223 if (show) in cec_pin_rx_data_bit_was_high()
234 static void cec_pin_rx_data_bit_was_low(__u64 ev_ts, __u64 usecs, __u64 usecs_min, bool show) in cec_pin_rx_data_bit_was_low() argument
245 if (usecs >= max_low_drive && show) in cec_pin_rx_data_bit_was_low()
249 if (show) in cec_pin_rx_data_bit_was_low()
257 if (show) in cec_pin_rx_data_bit_was_low()
259 cec_pin_rx_start_bit_was_low(ev_ts, usecs, usecs_min, show); in cec_pin_rx_data_bit_was_low()
265 if (show) in cec_pin_rx_data_bit_was_low()
269 if (show) in cec_pin_rx_data_bit_was_low()
276 usecs < CEC_TIM_DATA_BIT_0_LOW_MIN - CEC_TIM_MARGIN && show) { in cec_pin_rx_data_bit_was_low()
280 if (usecs < CEC_TIM_DATA_BIT_1_LOW_MIN - CEC_TIM_MARGIN && show) { in cec_pin_rx_data_bit_was_low()
289 static void cec_pin_debug(__u64 ev_ts, __u64 usecs, bool was_high, bool is_high, bool show) in cec_pin_debug() argument
297 cec_pin_rx_start_bit_was_high(is_high, usecs, usecs_min, show); in cec_pin_debug()
299 cec_pin_rx_start_bit_was_low(ev_ts, usecs, usecs_min, show); in cec_pin_debug()
304 cec_pin_rx_data_bit_was_high(is_high, ev_ts, usecs, usecs_min, show); in cec_pin_debug()
306 cec_pin_rx_data_bit_was_low(ev_ts, usecs, usecs_min, show); in cec_pin_debug()
323 void log_event_pin(bool is_high, __u64 ev_ts, bool show) in log_event_pin() argument
339 if (show) { in log_event_pin()
388 cec_pin_debug(ev_ts, (ev_ts - last_ts) / 1000, was_high, is_high, show); in log_event_pin()