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

  /system/bt/service/ipc/binder/
bluetooth_gatt_server_binder_server.cpp 154 auto gatt_cb = GetGattServerCallback(server_id);
155 if (!gatt_cb.get()) {
160 gatt_cb->OnServiceAdded(status, service_id);
216 auto gatt_cb = GetGattServerCallback(server_id);
217 if (!gatt_cb.get()) {
222 gatt_cb->OnNotificationSent(device_address, error);
242 auto gatt_cb = GetGattServerCallback(gatt_server->GetInstanceId()); local
243 if (!gatt_cb.get()) {
248 gatt_cb->OnCharacteristicReadRequest(
260 auto gatt_cb = GetGattServerCallback(gatt_server->GetInstanceId()) local
310 auto gatt_cb = GetGattServerCallback(gatt_server->GetInstanceId()); local
330 auto gatt_cb = GetGattServerCallback(gatt_server->GetInstanceId()); local
348 auto gatt_cb = GetGattServerCallback(gatt_server->GetInstanceId()); local
    [all...]
  /system/bt/stack/gatt/
gatt_main.c 79 tGATT_CB gatt_cb; variable
98 memset (&gatt_cb, 0, sizeof(tGATT_CB));
102 gatt_cb.trace_level = GATT_INITIAL_TRACE_LEVEL;
104 gatt_cb.trace_level = BT_TRACE_LEVEL_NONE; /* No traces */
106 gatt_cb.def_mtu_size = GATT_DEF_BLE_MTU_SIZE;
107 gatt_cb.sign_op_queue = fixed_queue_new(SIZE_MAX);
108 gatt_cb.srv_chg_clt_q = fixed_queue_new(SIZE_MAX);
109 gatt_cb.pending_new_srv_start_q = fixed_queue_new(SIZE_MAX);
134 gatt_cb.hdl_cfg.gatt_start_hdl = GATT_GATT_START_HANDLE;
135 gatt_cb.hdl_cfg.gap_start_hdl = GATT_GAP_START_HANDLE
    [all...]
gatt_int.h 37 #define GATT_GET_SR_REG_PTR(index) (&gatt_cb.sr_reg[(UINT8) (index)]);
515 extern tGATT_CB gatt_cb;
518 #define gatt_cb (*gatt_cb_ptr) macro

Completed in 53 milliseconds