Searched refs:read_param (Results 1 – 2 of 2) sorted by relevance
/system/bt/bta/gatt/ |
D | bta_gattc_cache.cc | 179 tGATT_READ_PARAM read_param{ in bta_gattc_explore_next_service() local 182 GATTC_Read(conn_id, GATT_READ_BY_HANDLE, &read_param); in bta_gattc_explore_next_service() 194 tGATT_READ_PARAM read_param; in bta_gattc_explore_next_service() local 195 memset(&read_param, 0, sizeof(tGATT_READ_PARAM)); in bta_gattc_explore_next_service() 197 read_param.read_multiple.num_handles = num_handles; in bta_gattc_explore_next_service() 198 read_param.read_multiple.auth_req = GATT_AUTH_REQ_NONE; in bta_gattc_explore_next_service() 199 memcpy(&read_param.read_multiple.handles, descriptors.data(), in bta_gattc_explore_next_service() 201 GATTC_Read(conn_id, GATT_READ_MULTIPLE, &read_param); in bta_gattc_explore_next_service() 628 tGATT_READ_PARAM read_param; in bta_gattc_read_db_hash() local 629 memset(&read_param, 0, sizeof(tGATT_READ_BY_TYPE)); in bta_gattc_read_db_hash() [all …]
|
D | bta_gattc_act.cc | 777 tGATT_READ_PARAM read_param; in bta_gattc_read() local 778 memset(&read_param, 0, sizeof(tGATT_READ_PARAM)); in bta_gattc_read() 779 read_param.by_handle.handle = p_data->api_read.handle; in bta_gattc_read() 780 read_param.by_handle.auth_req = p_data->api_read.auth_req; in bta_gattc_read() 781 status = GATTC_Read(p_clcb->bta_conn_id, GATT_READ_BY_HANDLE, &read_param); in bta_gattc_read() 783 tGATT_READ_PARAM read_param; in bta_gattc_read() local 784 memset(&read_param, 0, sizeof(tGATT_READ_BY_TYPE)); in bta_gattc_read() 786 read_param.char_type.s_handle = p_data->api_read.s_handle; in bta_gattc_read() 787 read_param.char_type.e_handle = p_data->api_read.e_handle; in bta_gattc_read() 788 read_param.char_type.uuid = p_data->api_read.uuid; in bta_gattc_read() [all …]
|