• Home
  • Raw
  • Download

Lines Matching refs:start_hr

437 						__u8 start_hr,  in cec_msg_clear_analogue_timer()  argument
451 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_clear_analogue_timer()
466 __u8 *start_hr, in cec_ops_clear_analogue_timer() argument
478 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_clear_analogue_timer()
492 __u8 start_hr, in cec_msg_clear_digital_timer() argument
505 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_clear_digital_timer()
516 __u8 *start_hr, in cec_ops_clear_digital_timer() argument
526 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_clear_digital_timer()
538 __u8 start_hr, in cec_msg_clear_ext_timer() argument
552 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_clear_ext_timer()
567 __u8 *start_hr, in cec_ops_clear_ext_timer() argument
579 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_clear_ext_timer()
593 __u8 start_hr, in cec_msg_set_analogue_timer() argument
607 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_set_analogue_timer()
622 __u8 *start_hr, in cec_ops_set_analogue_timer() argument
634 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_set_analogue_timer()
648 __u8 start_hr, in cec_msg_set_digital_timer() argument
661 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_set_digital_timer()
672 __u8 *start_hr, in cec_ops_set_digital_timer() argument
682 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_set_digital_timer()
694 __u8 start_hr, in cec_msg_set_ext_timer() argument
708 msg->msg[4] = ((start_hr / 10) << 4) | (start_hr % 10); in cec_msg_set_ext_timer()
723 __u8 *start_hr, in cec_ops_set_ext_timer() argument
735 *start_hr = (msg->msg[4] >> 4) * 10 + (msg->msg[4] & 0xf); in cec_ops_set_ext_timer()