/hardware/libhardware/include/hardware/ |
bt_common_types.h | 66 uint16_t end_handle; member in struct:__anon31977
|
bt_gatt_client.h | 228 /** GATT services between start_handle and end_handle were removed */ 229 typedef void (*services_removed_callback)(int conn_id, uint16_t start_handle, uint16_t end_handle);
|
/system/bt/bta/gatt/ |
bta_gattc_cache.c | 742 UINT16 start_handle = 0, end_handle = 0; local 760 end_handle = (UINT16) pe.params[1]; 764 service_uuid.uu.uuid16, start_handle, end_handle); 767 if (GATT_HANDLE_IS_VALID(start_handle) && GATT_HANDLE_IS_VALID(end_handle)&& 773 end_handle, 779 APPL_TRACE_ERROR("invalid start_handle = %d end_handle = %d", 780 start_handle, end_handle); [all...] |
bta_gattc_utils.c | 478 ** Where handle is between start_handle and end_handle, and 479 ** start_handle and end_handle are boundaries of service 486 UINT16 start_handle, UINT16 end_handle) 505 if (handle >= start_handle && handle <= end_handle)
|
bta_gattc_int.h | 473 extern void bta_gattc_clear_notif_registration(tBTA_GATTC_SERV *p_srcb, UINT16 conn_id, UINT16 start_handle, UINT16 end_handle); 487 extern void bta_gattc_get_gatt_db(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, btgatt_db_element_t **db, int *count);
|
bta_gattc_api.c | 319 void BTA_GATTC_GetGattDb(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, 322 bta_gattc_get_gatt_db(conn_id, start_handle, end_handle, db, count);
|
/system/bt/service/hal/ |
bluetooth_gatt_interface.cpp | 246 void ServicesRemovedCallback(int conn_id, uint16_t start_handle, uint16_t end_handle) { 250 << " end_handle: " << end_handle; local 254 ServicesRemovedCallback(g_interface, conn_id, start_handle, end_handle)); 724 uint16_t /* end_handle */) {
|
bluetooth_gatt_interface.h | 133 uint16_t end_handle);
|
/system/bt/stack/gatt/ |
gatt_db.c | 78 p_db->end_handle = s_hdl + num_handle; [all...] |
gatt_int.h | 222 UINT16 end_handle; /* Last handle number */ member in struct:__anon74030
|
/system/bt/bta/include/ |
bta_gatt_api.h | 768 extern void BTA_GATTC_GetGattDb(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, [all...] |
/packages/apps/Bluetooth/jni/ |
com_android_bluetooth_gatt.cpp | 597 sCallbackEnv->SetIntField(element, fid, curr.end_handle); [all...] |