/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/gatt_test_app/src/gatt/ |
D | gatt_macs.h | 37 #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/ |
D | gatt_expects.h | 15 #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/ |
D | audio_internal.h | 50 #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, \
|
D | tbs.c | 1470 #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), \
|
D | ascs.c | 3103 #define BT_ASCS_ASE_DEFINE(_uuid, _id) \ argument 3104 BT_AUDIO_CHRC(_uuid, \
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | gatt.h | 895 #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/ |
D | sdp.h | 416 #define BT_SDP_SERVICE_ID(_uuid) \ argument 419 { BT_SDP_TYPE_SIZE(BT_SDP_UUID16), &((struct bt_uuid_16) _uuid) } \
|