Searched refs:read_param (Results 1 – 2 of 2) sorted by relevance
/packages/modules/Bluetooth/system/bta/gatt/ |
D | bta_gattc_cache.cc | 256 tGATT_READ_PARAM read_param{.by_handle = {.auth_req = GATT_AUTH_REQ_NONE, in bta_gattc_explore_next_service() local 258 if (GATTC_Read(conn_id, GATT_READ_BY_HANDLE, &read_param) != in bta_gattc_explore_next_service() 273 tGATT_READ_PARAM read_param; in bta_gattc_explore_next_service() local 274 memset(&read_param, 0, sizeof(tGATT_READ_PARAM)); in bta_gattc_explore_next_service() 276 read_param.read_multiple.num_handles = num_handles; in bta_gattc_explore_next_service() 277 read_param.read_multiple.auth_req = GATT_AUTH_REQ_NONE; in bta_gattc_explore_next_service() 278 memcpy(&read_param.read_multiple.handles, descriptors.data(), in bta_gattc_explore_next_service() 280 if (GATTC_Read(conn_id, GATT_READ_MULTIPLE, &read_param) != GATT_SUCCESS) { in bta_gattc_explore_next_service() 722 tGATT_READ_PARAM read_param; in bta_gattc_read_db_hash() local 723 memset(&read_param, 0, sizeof(tGATT_READ_BY_TYPE)); in bta_gattc_read_db_hash() [all …]
|
D | bta_gattc_act.cc | 1007 tGATT_READ_PARAM read_param; in bta_gattc_read() local 1008 memset(&read_param, 0, sizeof(tGATT_READ_PARAM)); in bta_gattc_read() 1009 read_param.by_handle.handle = p_data->api_read.handle; in bta_gattc_read() 1010 read_param.by_handle.auth_req = p_data->api_read.auth_req; in bta_gattc_read() 1011 status = GATTC_Read(p_clcb->bta_conn_id, GATT_READ_BY_HANDLE, &read_param); in bta_gattc_read() 1013 tGATT_READ_PARAM read_param; in bta_gattc_read() local 1014 memset(&read_param, 0, sizeof(tGATT_READ_BY_TYPE)); in bta_gattc_read() 1016 read_param.char_type.s_handle = p_data->api_read.s_handle; in bta_gattc_read() 1017 read_param.char_type.e_handle = p_data->api_read.e_handle; in bta_gattc_read() 1018 read_param.char_type.uuid = p_data->api_read.uuid; in bta_gattc_read() [all …]
|