Searched refs:_perm (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/ble_host/bt_host/include/aos/ |
A D | gatt.h | 256 #define GATT_ATT_DEFINE(_uuid, _perm, _read, _write,_value) \ argument 259 .perm = _perm, \ 274 #define GATT_CHAR_VAL_DEFINE(_uuid, _perm) \ argument 275 GATT_ATT_DEFINE(_uuid, _perm, NULL, NULL, NULL) 277 #define GATT_CHAR_DESCRIPTOR_DEFINE(_uuid, _perm) \ argument 278 GATT_ATT_DEFINE(_uuid, _perm, NULL, NULL, NULL) 284 #define GATT_CHAR_CUD_DEFINE(_value, _perm) \ argument 285 GATT_ATT_DEFINE(UUID_GATT_CUD, _perm, NULL, NULL,(&(gatt_cud_t) {.user_des = _value})) 287 #define GATT_CHAR_CPF_DEFINE(_value, _perm) \ argument 288 GATT_ATT_DEFINE(UUID_GATT_CPF, _perm, NULL, NULL,(&(gatt_cep_t) {.ext_props = _value}))
|
/AliOS-Things-master/components/ble_host/bt_host/include/bluetooth/ |
A D | gatt.h | 558 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _value) 687 #define BT_GATT_CCC_MANAGED(_ccc, _perm) \ argument 688 BT_GATT_ATTRIBUTE(BT_UUID_GATT_CCC, _perm, \ 700 #define BT_GATT_CCC(_changed, _perm) \ argument 702 {BT_GATT_CCC_INITIALIZER(_changed, NULL, NULL)}), _perm) 764 #define BT_GATT_CUD(_value, _perm) \ argument 765 BT_GATT_DESCRIPTOR(BT_UUID_GATT_CUD, _perm, bt_gatt_attr_read_cud, \ 810 #define BT_GATT_DESCRIPTOR(_uuid, _perm, _read, _write, _value) \ argument 811 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _value) 824 #define BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _value) \ argument [all …]
|
Completed in 6 milliseconds