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

  /system/bt/stack/srvc/
srvc_dis_int.h 45 UINT16 service_handle; member in struct:__anon72887
  /system/bt/test/suite/gatt/
gatt_test.h 42 int service_handle() const { return service_handle_; } function in class:bttest::GattTest
  /system/bt/service/
gatt_server.h 213 ServiceDeclaration() : num_handles(0), service_handle(-1) {}
217 int service_handle; member in struct:bluetooth::GattServer::ServiceDeclaration
266 int service_handle) override;
271 int service_handle,
277 int service_handle,
282 int service_handle) override;
286 int service_handle) override;
gatt_server.cpp 501 int service_handle) {
516 << " handle: " << service_handle
525 pending_handle_map_[*gatt_id] = service_handle;
526 CHECK(-1 == pending_decl_->service_handle);
527 pending_decl_->service_handle = service_handle;
536 int service_handle,
544 CHECK(pending_decl_->service_handle == service_handle);
551 << " service_handle: " << service_handl
612 << " handle: " << service_handle; local
    [all...]
gatt_server_old.cpp 118 int service_handle; member in struct:bluetooth::gatt::ServerInternals
155 g_internal->service_handle = srvc_handle;
299 "%s: status:%d server_if:%d service_handle:%d char_handle:%d", __func__,
317 "%s: status:%d server_if:%d service_handle:%d uuid[0]:%u "
516 server_if, service_handle, &c_uuid, properties, permissions);
523 service_handle(0),
532 gatt->server->delete_service(server_if, service_handle);
651 internal_->service_handle);
702 internal_->server_if, internal_->service_handle, GATT_TRANSPORT_LE);
705 internal_->service_handle);
    [all...]
  /system/bt/stack/gatt/
gatt_attr.c 270 UINT16 service_handle = 0; local
281 service_handle = GATTS_CreateService (gatt_cb.gatt_if , &uuid, 0, GATTP_MAX_ATTR_NUM, TRUE);
287 gatt_cb.handle_of_h_r = GATTS_AddCharacteristic(service_handle, &uuid, 0, GATT_CHAR_PROP_BIT_INDICATE);
294 status = GATTS_StartService (gatt_cb.gatt_if, service_handle, GATTP_TRANSPORT_SUPPORTED );
  /system/bt/stack/gap/
gap_ble.c 384 UINT16 service_handle; local
397 service_handle = GATTS_CreateService (gap_cb.gatt_if, &uuid, 0, GAP_MAX_ATTR_NUM, TRUE);
399 GAP_TRACE_EVENT ("gap_attr_db_init service_handle = %d", service_handle);
405 p_db_attr->handle = GATTS_AddCharacteristic(service_handle, &uuid, GATT_PERM_READ, GATT_CHAR_PROP_BIT_READ);
411 p_db_attr->handle = GATTS_AddCharacteristic(service_handle,
425 p_db_attr->handle = GATTS_AddCharacteristic(service_handle,
435 p_db_attr->handle = GATTS_AddCharacteristic(service_handle, &uuid,
443 status = GATTS_StartService(gap_cb.gatt_if, service_handle, GAP_TRANSPORT_SUPPORTED );
446 gap_cb.gatt_if, service_handle, status)
    [all...]

Completed in 56 milliseconds