Home
last modified time | relevance | path

Searched refs:_write (Results 1 – 8 of 8) 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
42 .write = _write, \
61 #define BT_GATT_H_CHARACTERISTIC(_uuid, _props, _perm, _read, _write, _value,\ argument
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/subsys/bluetooth/audio/
Daudio_internal.h42 #define BT_AUDIO_ATTR_USER_DATA_INIT(_read, _write, _user_data) \ argument
45 .write = _write, \
50 #define BT_AUDIO_CHRC(_uuid, _props, _perm, _read, _write, _user_data) \ argument
53 BT_AUDIO_ATTR_USER_DATA_INIT(_read, _write, _user_data), \
/Zephyr-latest/lib/libc/newlib/
Dlibc-hooks.c28 int _write(int fd, const void *buf, int nbytes);
234 int _write(int fd, const void *buf, int nbytes) in _write() function
240 __weak FUNC_ALIAS(_write, write, int);
297 _write(1, "exit\n", 5); in _exit()
493 _write(2, chk_fail_msg, sizeof(chk_fail_msg) - 1); in __chk_fail()
513 return _write(fd, buf, nbytes); in _write_r()
/Zephyr-latest/include/zephyr/bluetooth/
Dgatt.h919 #define BT_GATT_CHARACTERISTIC(_uuid, _props, _perm, _read, _write, _user_data) \ argument
925 BT_GATT_ATTRIBUTE(_uuid, _perm, _read, _write, _user_data)
1037 #define BT_GATT_CCC_INITIALIZER(_changed, _write, _match) \ argument
1041 .cfg_write = _write, \
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
1201 .write = _write, \
/Zephyr-latest/lib/libc/arcmwdt/
Dlibc-hooks.c66 int _write(int fd, const char *buf, unsigned int nbytes) in _write() function
/Zephyr-latest/lib/posix/options/
DKconfig.device_io44 When selected via Kconfig, Zephyr will provide an alias for write() as _write().
Ddevice_io.c137 FUNC_ALIAS(write, _write, ssize_t);
/Zephyr-latest/drivers/eeprom/
Deeprom_at2x.c646 .write_fn = eeprom_at##t##_write, \