Home
last modified time | relevance | path

Searched refs:_uuid (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/gatt_test_app/src/gatt/
Dgatt_macs.h37 #define BT_GATT_H_ATTRIBUTE(_uuid, _perm, _read, _write, _value, _handle) \ argument
39 .uuid = _uuid, \
61 #define BT_GATT_H_CHARACTERISTIC(_uuid, _props, _perm, _read, _write, _value,\ argument
67 (&(struct bt_gatt_chrc) {.uuid = _uuid, \
71 BT_GATT_H_ATTRIBUTE(_uuid, _perm, _read, _write, _value, _handle + 1)
133 #define BT_GATT_H_DESCRIPTOR(_uuid, _perm, _read, _write, _value, _handle) \ argument
134 BT_GATT_H_ATTRIBUTE(_uuid, _perm, _read, _write, _value, _handle)
/Zephyr-latest/tests/bluetooth/audio/mocks/include/
Dgatt_expects.h15 #define expect_bt_gatt_notify_cb_called_once(_conn, _uuid, _attr, _data, _len) \ argument
29 IF_NOT_EMPTY(_uuid, ( \
30 zassert_true(bt_uuid_cmp(_uuid, params->uuid) == 0, \
/Zephyr-latest/subsys/bluetooth/audio/
Daudio_internal.h50 #define BT_AUDIO_CHRC(_uuid, _props, _perm, _read, _write, _user_data) \ argument
51 BT_GATT_CHARACTERISTIC(_uuid, _props, _perm, bt_audio_read_chrc, bt_audio_write_chrc, \
Dtbs.c1470 #define BT_TBS_SERVICE_DEFINE(_uuid, _inst) \ argument
1471 BT_GATT_PRIMARY_SERVICE(_uuid), BT_TBS_CHR_PROVIDER_NAME(_inst), BT_TBS_CHR_UCI(_inst), \
Dascs.c3103 #define BT_ASCS_ASE_DEFINE(_uuid, _id) \ argument
3104 BT_AUDIO_CHRC(_uuid, \
/Zephyr-latest/include/zephyr/bluetooth/
Dgatt.h895 #define BT_GATT_CHRC_INIT(_uuid, _handle, _props) \ argument
897 .uuid = _uuid, \
919 #define BT_GATT_CHARACTERISTIC(_uuid, _props, _perm, _read, _write, _user_data) \ argument
923 BT_GATT_CHRC_INIT(_uuid, 0U, _props), \
925 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data)
1182 #define BT_GATT_DESCRIPTOR(_uuid, _perm, _read, _write, _user_data) \ argument
1183 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data)
1197 #define BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data) \ argument
1199 .uuid = _uuid, \
/Zephyr-latest/include/zephyr/bluetooth/classic/
Dsdp.h416 #define BT_SDP_SERVICE_ID(_uuid) \ argument
419 { BT_SDP_TYPE_SIZE(BT_SDP_UUID16), &((struct bt_uuid_16) _uuid) } \