Home | History | Annotate | Download | only in src

Lines Matching refs:p_src_data

773     tBTA_DM_SEARCH *p_src_data =  (tBTA_DM_SEARCH *) p_src;
779 memcpy(p_dest_data, p_src_data, sizeof(tBTA_DM_SEARCH));
784 if (p_src_data->inq_res.p_eir)
787 memcpy(p_dest_data->inq_res.p_eir, p_src_data->inq_res.p_eir, HCI_EXT_INQ_RESPONSE_LEN);
794 if (p_src_data->disc_res.raw_data_size && p_src_data->disc_res.p_raw_data)
798 p_src_data->disc_res.p_raw_data, p_src_data->disc_res.raw_data_size);
808 tBTA_DM_SEARCH *p_src_data = (tBTA_DM_SEARCH *) p_src;
812 memcpy(p_dest_data, p_src_data, sizeof(tBTA_DM_SEARCH));
817 if (p_src_data->disc_res.result == BTA_SUCCESS)
819 if (p_src_data->disc_res.num_uuids > 0)
823 memcpy(p_dest_data->disc_res.p_uuid_list, p_src_data->disc_res.p_uuid_list,
824 p_src_data->disc_res.num_uuids*MAX_UUID_SIZE);
825 GKI_freebuf(p_src_data->disc_res.p_uuid_list);
827 if (p_src_data->disc_res.p_raw_data != NULL)
829 GKI_freebuf(p_src_data->disc_res.p_raw_data);