Lines Matching refs:read_param
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()
631 read_param.char_type.s_handle = 0x0001; in bta_gattc_read_db_hash()
632 read_param.char_type.e_handle = 0xFFFF; in bta_gattc_read_db_hash()
633 read_param.char_type.uuid = Uuid::From16Bit(GATT_UUID_DATABASE_HASH); in bta_gattc_read_db_hash()
634 read_param.char_type.auth_req = GATT_AUTH_REQ_NONE; in bta_gattc_read_db_hash()
636 GATTC_Read(p_clcb->bta_conn_id, GATT_READ_BY_TYPE, &read_param); in bta_gattc_read_db_hash()