Home | History | Annotate | Download | only in btm

Lines Matching refs:main_rep_q

170         if (report_format == ble_batchscan_cb.main_rep_q.rep_mode[i])
174 ble_batchscan_cb.main_rep_q.rep_mode[ble_batchscan_cb.main_rep_q.next_idx] = report_format;
175 ble_batchscan_cb.main_rep_q.ref_value[ble_batchscan_cb.main_rep_q.next_idx] = ref_value;
176 ble_batchscan_cb.main_rep_q.num_records[ble_batchscan_cb.main_rep_q.next_idx] = 0;
177 ble_batchscan_cb.main_rep_q.data_len[ble_batchscan_cb.main_rep_q.next_idx] = 0;
178 ble_batchscan_cb.main_rep_q.p_data[ble_batchscan_cb.main_rep_q.next_idx] = NULL;
180 ble_batchscan_cb.main_rep_q.next_idx, report_format, ref_value);
182 ble_batchscan_cb.main_rep_q.next_idx = (ble_batchscan_cb.main_rep_q.next_idx + 1)
203 if (report_format == ble_batchscan_cb.main_rep_q.rep_mode[index])
212 int len = ble_batchscan_cb.main_rep_q.data_len[index];
213 UINT8 *p_orig_data = ble_batchscan_cb.main_rep_q.p_data[index];
222 ble_batchscan_cb.main_rep_q.p_data[index] = p_app_data;
223 ble_batchscan_cb.main_rep_q.num_records[index] += num_records;
224 ble_batchscan_cb.main_rep_q.data_len[index] += data_len;
230 ble_batchscan_cb.main_rep_q.p_data[index] = p_app_data;
231 ble_batchscan_cb.main_rep_q.num_records[index] = num_records;
232 ble_batchscan_cb.main_rep_q.data_len[index] = data_len;
254 if (report_format == ble_batchscan_cb.main_rep_q.rep_mode[index])
264 *p_num_records = ble_batchscan_cb.main_rep_q.num_records[index];
265 *p_ref_value = ble_batchscan_cb.main_rep_q.ref_value[index];
266 *p_data = ble_batchscan_cb.main_rep_q.p_data[index];
267 *p_data_len = ble_batchscan_cb.main_rep_q.data_len[index];
269 ble_batchscan_cb.main_rep_q.p_data[index] = NULL;
270 ble_batchscan_cb.main_rep_q.data_len[index] = 0;
271 ble_batchscan_cb.main_rep_q.rep_mode[index] = 0;
272 ble_batchscan_cb.main_rep_q.ref_value[index] = 0;
273 ble_batchscan_cb.main_rep_q.num_records[index] = 0;
278 ble_batchscan_cb.main_rep_q.pending_idx = (ble_batchscan_cb.main_rep_q.pending_idx + 1)
963 osi_free_and_reset((void **)&ble_batchscan_cb.main_rep_q.p_data[index]);