• Home
  • Raw
  • Download

Lines Matching refs:len

16 	msg->len = 4;  in cec_msg_active_source()
31 msg->len = 2; in cec_msg_image_view_on()
37 msg->len = 2; in cec_msg_text_view_on()
46 msg->len = 4; in cec_msg_inactive_source()
61 msg->len = 2; in cec_msg_request_active_source()
70 msg->len = 4; in cec_msg_routing_information()
88 msg->len = 6; in cec_msg_routing_change()
108 msg->len = 4; in cec_msg_set_stream_path()
125 msg->len = 2; in cec_msg_standby()
133 msg->len = 2; in cec_msg_record_off()
245 msg->len = 3; in cec_msg_record_on_own()
253 msg->len = 10; in cec_msg_record_on_digital()
264 msg->len = 7; in cec_msg_record_on_analog()
276 msg->len = 4; in cec_msg_record_on_plug()
285 msg->len = 5; in cec_msg_record_on_phys_addr()
348 msg->len = 3; in cec_msg_record_status()
362 msg->len = 2; in cec_msg_record_tv_screen()
377 msg->len = 3; in cec_msg_timer_status()
386 msg->len += 2; in cec_msg_timer_status()
422 msg->len = 3; in cec_msg_timer_cleared_status()
446 msg->len = 13; in cec_msg_clear_analogue_timer()
499 msg->len = 16; in cec_msg_clear_digital_timer()
547 msg->len = 13; in cec_msg_clear_ext_timer()
602 msg->len = 13; in cec_msg_set_analogue_timer()
655 msg->len = 16; in cec_msg_set_digital_timer()
703 msg->len = 13; in cec_msg_set_ext_timer()
748 unsigned int len = strlen(prog_title); in cec_msg_set_timer_program_title() local
750 if (len > 14) in cec_msg_set_timer_program_title()
751 len = 14; in cec_msg_set_timer_program_title()
752 msg->len = 2 + len; in cec_msg_set_timer_program_title()
754 memcpy(msg->msg + 2, prog_title, len); in cec_msg_set_timer_program_title()
760 unsigned int len = msg->len > 2 ? msg->len - 2 : 0; in cec_ops_set_timer_program_title() local
762 if (len > 14) in cec_ops_set_timer_program_title()
763 len = 14; in cec_ops_set_timer_program_title()
764 memcpy(prog_title, msg->msg + 2, len); in cec_ops_set_timer_program_title()
765 prog_title[len] = '\0'; in cec_ops_set_timer_program_title()
771 msg->len = 3; in cec_msg_cec_version()
785 msg->len = 2; in cec_msg_get_cec_version()
793 msg->len = 5; in cec_msg_report_physical_addr()
811 msg->len = 2; in cec_msg_give_physical_addr()
819 msg->len = 5; in cec_msg_set_menu_language()
835 msg->len = 2; in cec_msg_get_menu_language()
852 msg->len = 6; in cec_msg_report_features()
885 msg->len = 2; in cec_msg_give_features()
894 msg->len = 3; in cec_msg_deck_control()
908 msg->len = 3; in cec_msg_deck_status()
923 msg->len = 3; in cec_msg_give_deck_status()
939 msg->len = 3; in cec_msg_play()
973 msg->len = 7; in cec_msg_tuner_device_status_analog()
986 msg->len = 10; in cec_msg_tuner_device_status_digital()
1012 tuner_dev_info->is_analog = msg->len < 10; in cec_ops_tuner_device_status()
1028 msg->len = 3; in cec_msg_give_tuner_device_status()
1046 msg->len = 6; in cec_msg_select_analogue_service()
1067 msg->len = 9; in cec_msg_select_digital_service()
1080 msg->len = 2; in cec_msg_tuner_step_decrement()
1086 msg->len = 2; in cec_msg_tuner_step_increment()
1094 msg->len = 5; in cec_msg_device_vendor_id()
1111 msg->len = 2; in cec_msg_give_device_vendor_id()
1121 msg->len = 2 + size; in cec_msg_vendor_command()
1130 *size = msg->len - 2; in cec_ops_vendor_command()
1143 msg->len = 5 + size; in cec_msg_vendor_command_with_id()
1155 *size = msg->len - 5; in cec_ops_vendor_command_with_id()
1169 msg->len = 2 + size; in cec_msg_vendor_remote_button_down()
1178 *size = msg->len - 2; in cec_ops_vendor_remote_button_down()
1187 msg->len = 2; in cec_msg_vendor_remote_button_up()
1197 unsigned int len = strlen(osd); in cec_msg_set_osd_string() local
1199 if (len > 13) in cec_msg_set_osd_string()
1200 len = 13; in cec_msg_set_osd_string()
1201 msg->len = 3 + len; in cec_msg_set_osd_string()
1204 memcpy(msg->msg + 3, osd, len); in cec_msg_set_osd_string()
1211 unsigned int len = msg->len > 3 ? msg->len - 3 : 0; in cec_ops_set_osd_string() local
1214 if (len > 13) in cec_ops_set_osd_string()
1215 len = 13; in cec_ops_set_osd_string()
1216 memcpy(osd, msg->msg + 3, len); in cec_ops_set_osd_string()
1217 osd[len] = '\0'; in cec_ops_set_osd_string()
1224 unsigned int len = strlen(name); in cec_msg_set_osd_name() local
1226 if (len > 14) in cec_msg_set_osd_name()
1227 len = 14; in cec_msg_set_osd_name()
1228 msg->len = 2 + len; in cec_msg_set_osd_name()
1230 memcpy(msg->msg + 2, name, len); in cec_msg_set_osd_name()
1236 unsigned int len = msg->len > 2 ? msg->len - 2 : 0; in cec_ops_set_osd_name() local
1238 if (len > 14) in cec_ops_set_osd_name()
1239 len = 14; in cec_ops_set_osd_name()
1240 memcpy(name, msg->msg + 2, len); in cec_ops_set_osd_name()
1241 name[len] = '\0'; in cec_ops_set_osd_name()
1247 msg->len = 2; in cec_msg_give_osd_name()
1257 msg->len = 3; in cec_msg_menu_status()
1272 msg->len = 3; in cec_msg_menu_request()
1301 msg->len = 3; in cec_msg_user_control_pressed()
1314 msg->len++; in cec_msg_user_control_pressed()
1318 msg->len += 4; in cec_msg_user_control_pressed()
1333 if (msg->len == 3) in cec_ops_user_control_pressed()
1347 if (msg->len < 7) in cec_ops_user_control_pressed()
1359 msg->len = 2; in cec_msg_user_control_released()
1369 msg->len = 3; in cec_msg_report_power_status()
1383 msg->len = 2; in cec_msg_give_device_power_status()
1392 msg->len = 4; in cec_msg_feature_abort()
1409 msg->len = 4; in cec_msg_reply_feature_abort()
1417 msg->len = 2; in cec_msg_abort()
1427 msg->len = 3; in cec_msg_report_audio_status()
1443 msg->len = 2; in cec_msg_give_audio_status()
1451 msg->len = 3; in cec_msg_set_system_audio_mode()
1466 msg->len = phys_addr == 0xffff ? 2 : 4; in cec_msg_system_audio_mode_request()
1477 if (msg->len < 4) in cec_ops_system_audio_mode_request()
1486 msg->len = 3; in cec_msg_system_audio_mode_status()
1500 msg->len = 2; in cec_msg_give_system_audio_mode_status()
1513 msg->len = 2 + num_descriptors * 3; in cec_msg_report_short_audio_descriptor()
1528 *num_descriptors = (msg->len - 2) / 3; in cec_ops_report_short_audio_descriptor()
1547 msg->len = 2 + num_descriptors; in cec_msg_request_short_audio_descriptor()
1562 *num_descriptors = msg->len - 2; in cec_ops_request_short_audio_descriptor()
1576 msg->len = 3; in cec_msg_set_audio_rate()
1591 msg->len = 2; in cec_msg_report_arc_initiated()
1598 msg->len = 2; in cec_msg_initiate_arc()
1606 msg->len = 2; in cec_msg_request_arc_initiation()
1613 msg->len = 2; in cec_msg_report_arc_terminated()
1620 msg->len = 2; in cec_msg_terminate_arc()
1628 msg->len = 2; in cec_msg_request_arc_termination()
1643 msg->len = 6; in cec_msg_report_current_latency()
1651 msg->msg[msg->len++] = audio_out_delay; in cec_msg_report_current_latency()
1665 if (*audio_out_compensated == 3 && msg->len >= 7) in cec_ops_report_current_latency()
1675 msg->len = 4; in cec_msg_request_current_latency()
1695 msg->len = 9; in cec_msg_cdc_hec_inquire_state()
1725 msg->len = has_field ? 10 : 8; in cec_msg_cdc_hec_report_state()
1758 *has_field = msg->len >= 10; in cec_ops_cdc_hec_report_state()
1770 msg->len = 10; in cec_msg_cdc_hec_set_state()
1781 msg->msg[msg->len++] = phys_addr3 >> 8; in cec_msg_cdc_hec_set_state()
1782 msg->msg[msg->len++] = phys_addr3 & 0xff; in cec_msg_cdc_hec_set_state()
1784 msg->msg[msg->len++] = phys_addr4 >> 8; in cec_msg_cdc_hec_set_state()
1785 msg->msg[msg->len++] = phys_addr4 & 0xff; in cec_msg_cdc_hec_set_state()
1787 msg->msg[msg->len++] = phys_addr5 >> 8; in cec_msg_cdc_hec_set_state()
1788 msg->msg[msg->len++] = phys_addr5 & 0xff; in cec_msg_cdc_hec_set_state()
1808 if (msg->len >= 12) in cec_ops_cdc_hec_set_state()
1810 if (msg->len >= 14) in cec_ops_cdc_hec_set_state()
1812 if (msg->len >= 16) in cec_ops_cdc_hec_set_state()
1820 msg->len = 8; in cec_msg_cdc_hec_set_state_adjacent()
1845 msg->len = 11; in cec_msg_cdc_hec_request_deactivation()
1872 msg->len = 5; in cec_msg_cdc_hec_notify_alive()
1887 msg->len = 5; in cec_msg_cdc_hec_discover()
1904 msg->len = 6; in cec_msg_cdc_hpd_set_state()
1926 msg->len = 6; in cec_msg_cdc_hpd_report_state()