Searched refs:read_param (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_act.c | 1147 tGATT_READ_PARAM read_param; in bta_gattc_read() local 1148 memset (&read_param, 0 ,sizeof(tGATT_READ_PARAM)); in bta_gattc_read() 1149 read_param.by_handle.handle = p_data->api_read.handle; in bta_gattc_read() 1150 read_param.by_handle.auth_req = p_data->api_read.auth_req; in bta_gattc_read() 1152 tBTA_GATT_STATUS status = GATTC_Read(p_clcb->bta_conn_id, GATT_READ_BY_HANDLE, &read_param); in bta_gattc_read() 1174 tGATT_READ_PARAM read_param; in bta_gattc_read_by_type() local 1175 memset (&read_param, 0 ,sizeof(tGATT_READ_PARAM)); in bta_gattc_read_by_type() 1176 read_param.service.auth_req = p_data->api_read.auth_req; in bta_gattc_read_by_type() 1177 read_param.service.s_handle = p_data->api_read.s_handle; in bta_gattc_read_by_type() 1178 read_param.service.e_handle = p_data->api_read.e_handle; in bta_gattc_read_by_type() [all …]
|
D | bta_gattc_api.c | 1216 tGATT_READ_PARAM read_param; in BTA_GATTC_ReadLongChar() local 1219 memset (&read_param, 0, sizeof(tGATT_READ_PARAM)); in BTA_GATTC_ReadLongChar() 1220 read_param.partial.handle = handle; in BTA_GATTC_ReadLongChar() 1221 read_param.partial.offset = offset; in BTA_GATTC_ReadLongChar() 1222 read_param.partial.auth_req = auth_req; in BTA_GATTC_ReadLongChar() 1224 status = GATTC_Read(conn_id, GATT_READ_PARTIAL, &read_param); in BTA_GATTC_ReadLongChar()
|