HomeSort by relevance Sort by last modified time
    Searched refs:service_handle (Results 1 - 6 of 6) sorted by null

  /hardware/libhardware/include/hardware/
bt_gatt_server.h 142 bt_status_t (*add_included_service)( int server_if, int service_handle, int included_handle);
146 int service_handle, bt_uuid_t *uuid,
150 bt_status_t (*add_descriptor)(int server_if, int service_handle,
154 bt_status_t (*start_service)(int server_if, int service_handle,
158 bt_status_t (*stop_service)(int server_if, int service_handle);
161 bt_status_t (*delete_service)(int server_if, int service_handle);
  /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 );
gatt_api.c 270 ** Parameter service_handle : To which service this included service is added to.
277 UINT16 GATTS_AddIncludeService (UINT16 service_handle, UINT16 include_svc_handle)
282 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL)
307 ** Parameter service_handle : To which service this included service is added to.
315 UINT16 GATTS_AddCharacteristic (UINT16 service_handle, tBT_UUID *p_char_uuid,
320 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL)
347 ** Parameter service_handle : To which service this characteristic descriptor
357 UINT16 GATTS_AddCharDescriptor (UINT16 service_handle,
363 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL)
463 tGATT_STATUS GATTS_StartService (tGATT_IF gatt_if, UINT16 service_handle,
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_gatt_server.c 515 static bt_status_t btif_gatts_add_included_service(int server_if, int service_handle,
521 btif_cb.srvc_handle = (uint16_t) service_handle;
527 static bt_status_t btif_gatts_add_characteristic(int server_if, int service_handle,
534 btif_cb.srvc_handle = (uint16_t) service_handle;
542 static bt_status_t btif_gatts_add_descriptor(int server_if, int service_handle, bt_uuid_t *uuid,
548 btif_cb.srvc_handle = (uint16_t) service_handle;
555 static bt_status_t btif_gatts_start_service(int server_if, int service_handle, int transport)
560 btif_cb.srvc_handle = (uint16_t) service_handle;
566 static bt_status_t btif_gatts_stop_service(int server_if, int service_handle)
571 btif_cb.srvc_handle = (uint16_t) service_handle;
    [all...]
  /external/bluetooth/bluedroid/stack/include/
gatt_api.h 732 ** Parameter service_handle : To which service this included service is added to.
739 GATT_API extern UINT16 GATTS_AddIncludeService (UINT16 service_handle,
752 ** Parameter service_handle : To which service this included service is added to.
761 GATT_API extern UINT16 GATTS_AddCharacteristic (UINT16 service_handle, tBT_UUID *char_uuid,
773 ** Parameter service_handle : To which service this characteristic descriptor
783 GATT_API extern UINT16 GATTS_AddCharDescriptor (UINT16 service_handle, tGATT_PERM perm,
814 GATT_API extern tGATT_STATUS GATTS_StartService (tGATT_IF gatt_if, UINT16 service_handle,
824 ** Parameter service_handle : this is the start handle of a service
829 GATT_API extern void GATTS_StopService (UINT16 service_handle);
    [all...]
  /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 131 milliseconds