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

  /system/bt/test/suite/cases/
gatt.c 111 int srvc_handle = gatt_get_service_handle(); local
112 CALL_AND_WAIT(gatt_interface->server->add_characteristic(server_if, srvc_handle, &char_uuid, 0x10 /* notification */, 0x01 /* read only */), btgatts_characteristic_added_cb);
116 CALL_AND_WAIT(gatt_interface->server->add_descriptor(server_if, srvc_handle, &desc_uuid, 0x01), btgatts_descriptor_added_cb);
120 CALL_AND_WAIT(gatt_interface->server->start_service(server_if, srvc_handle, 2 /*BREDR/LE*/), btgatts_service_started_cb);
124 CALL_AND_WAIT(gatt_interface->server->stop_service(server_if, srvc_handle), btgatts_service_stopped_cb);
128 CALL_AND_WAIT(gatt_interface->server->delete_service(server_if, srvc_handle), btgatts_service_deleted_cb);
  /system/bt/btif/src/
btif_gatt_server.c 95 uint16_t srvc_handle; member in struct:__anon69178
454 BTA_GATTS_AddIncludeService(p_cb->srvc_handle, p_cb->incl_handle);
462 BTA_GATTS_AddCharacteristic(p_cb->srvc_handle, &uuid,
472 BTA_GATTS_AddCharDescriptor(p_cb->srvc_handle, p_cb->permissions,
478 BTA_GATTS_StartService(p_cb->srvc_handle, p_cb->transport);
482 BTA_GATTS_StopService(p_cb->srvc_handle);
486 BTA_GATTS_DeleteService(p_cb->srvc_handle);
580 btif_cb.srvc_handle = (uint16_t) service_handle;
593 btif_cb.srvc_handle = (uint16_t) service_handle;
607 btif_cb.srvc_handle = (uint16_t) service_handle
    [all...]

Completed in 133 milliseconds