OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:service_handle
(Results
1 - 2
of
2
) sorted by null
/external/bluetooth/bluedroid/stack/gatt/
gatt_attr.c
248
UINT16
service_handle
= 0;
local
259
service_handle
= GATTS_CreateService (gatt_cb.gatt_if , &uuid, 0, GATTP_MAX_ATTR_NUM, TRUE);
265
gatt_cb.handle_of_h_r = GATTS_AddCharacteristic(
service_handle
, &uuid, 0, GATT_CHAR_PROP_BIT_INDICATE);
272
status = GATTS_StartService (gatt_cb.gatt_if,
service_handle
, GATTP_TRANSPORT_SUPPORTED );
/external/bluetooth/bluedroid/stack/gap/
gap_ble.c
480
UINT16
service_handle
;
local
493
service_handle
= GATTS_CreateService (gap_cb.gatt_if, &uuid, 0, GAP_MAX_ATTR_NUM, TRUE);
495
GAP_TRACE_EVENT1 ("gap_attr_db_init
service_handle
= %d",
service_handle
);
501
p_db_attr->handle = GATTS_AddCharacteristic(
service_handle
, &uuid, GATT_PERM_READ, GATT_CHAR_PROP_BIT_READ);
507
p_db_attr->handle = GATTS_AddCharacteristic(
service_handle
,
516
status = GATTS_StartService(gap_cb.gatt_if,
service_handle
, GAP_TRANSPORT_SUPPORTED );
519
gap_cb.gatt_if,
service_handle
, status);
Completed in 24 milliseconds