Lines Matching refs:xx
206 for(int xx = 0; ((xx < p_result->get_caps.count) && (xx < AVRC_CAP_MAX_NUM_COMP_ID)); in avrc_ctrl_pars_vendor_rsp() local
207 xx++) in avrc_ctrl_pars_vendor_rsp()
209 BE_STREAM_TO_UINT24(p_result->get_caps.param.company_id[xx], p); in avrc_ctrl_pars_vendor_rsp()
214 for(int xx = 0; ((xx < p_result->get_caps.count) && (xx < AVRC_CAP_MAX_NUM_EVT_ID)); in avrc_ctrl_pars_vendor_rsp() local
215 xx++) in avrc_ctrl_pars_vendor_rsp()
217 BE_STREAM_TO_UINT8(p_result->get_caps.param.event_id[xx], p); in avrc_ctrl_pars_vendor_rsp()
230 for(int xx = 0; xx < p_result->list_app_attr.num_attr; xx++) in avrc_ctrl_pars_vendor_rsp() local
232 BE_STREAM_TO_UINT8(p_result->list_app_attr.attrs[xx], p); in avrc_ctrl_pars_vendor_rsp()
244 for(int xx = 0; xx < p_result->list_app_values.num_val; xx++) in avrc_ctrl_pars_vendor_rsp() local
246 BE_STREAM_TO_UINT8(p_result->list_app_values.vals[xx], p); in avrc_ctrl_pars_vendor_rsp()
261 for (int xx = 0; xx < p_result->get_cur_app_val.num_val; xx++) in avrc_ctrl_pars_vendor_rsp() local
263 BE_STREAM_TO_UINT8(app_sett[xx].attr_id, p); in avrc_ctrl_pars_vendor_rsp()
264 BE_STREAM_TO_UINT8(app_sett[xx].attr_val, p); in avrc_ctrl_pars_vendor_rsp()
284 for (int xx = 0; xx < num_attrs; xx++) in avrc_ctrl_pars_vendor_rsp() local
286 BE_STREAM_TO_UINT8(p_result->get_app_attr_txt.p_attrs[xx].attr_id, p); in avrc_ctrl_pars_vendor_rsp()
287 BE_STREAM_TO_UINT16(p_result->get_app_attr_txt.p_attrs[xx].charset_id, p); in avrc_ctrl_pars_vendor_rsp()
288 BE_STREAM_TO_UINT8(p_result->get_app_attr_txt.p_attrs[xx].str_len, p); in avrc_ctrl_pars_vendor_rsp()
289 if (p_result->get_app_attr_txt.p_attrs[xx].str_len != 0) in avrc_ctrl_pars_vendor_rsp()
291 UINT8 *p_str = (UINT8 *)osi_malloc(p_result->get_app_attr_txt.p_attrs[xx].str_len); in avrc_ctrl_pars_vendor_rsp()
292 BE_STREAM_TO_ARRAY(p, p_str, p_result->get_app_attr_txt.p_attrs[xx].str_len); in avrc_ctrl_pars_vendor_rsp()
293 p_result->get_app_attr_txt.p_attrs[xx].p_str = p_str; in avrc_ctrl_pars_vendor_rsp()
295 p_result->get_app_attr_txt.p_attrs[xx].p_str = NULL; in avrc_ctrl_pars_vendor_rsp()