Home
last modified time | relevance | path

Searched refs:long_chrc_data (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/tests/bsim/bluetooth/host/misc/disable/src/
Dgatt_server_test.c48 static uint8_t long_chrc_data[LONG_CHRC_SIZE]; variable
88 (void *)long_chrc_data, sizeof(long_chrc_data)); in read_long_test_chrc()
100 if (len > sizeof(long_chrc_data)) { in write_long_test_chrc()
103 } else if (offset + len > sizeof(long_chrc_data)) { in write_long_test_chrc()
113 (void)memcpy(long_chrc_data + offset, buf, len); in write_long_test_chrc()
Dgatt_client_test.c26 static uint8_t long_chrc_data[] = { LISTIFY(LONG_CHRC_SIZE, ARRAY_ITEM, (,)) }; /* 1, 2, 3 ... */ variable
194 write_params.data = long_chrc_data; in gatt_write()
195 write_params.length = sizeof(long_chrc_data); in gatt_write()
227 memcmp(data, long_chrc_data, length) != 0) { in gatt_read_cb()
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/general/src/
Dgatt_server_test.c56 static uint8_t long_chrc_data[LONG_CHRC_SIZE]; variable
96 (void *)long_chrc_data, sizeof(long_chrc_data)); in read_long_test_chrc()
108 if (len > sizeof(long_chrc_data)) { in write_long_test_chrc()
111 } else if (offset + len > sizeof(long_chrc_data)) { in write_long_test_chrc()
121 (void)memcpy(long_chrc_data + offset, buf, len); in write_long_test_chrc()
Dgatt_client_test.c28 static uint8_t long_chrc_data[] = { LISTIFY(LONG_CHRC_SIZE, ARRAY_ITEM, (,)) }; /* 1, 2, 3 ... */ variable
225 write_params.data = long_chrc_data; in gatt_write()
226 write_params.length = sizeof(long_chrc_data); in gatt_write()
289 memcmp(data_received, long_chrc_data, data_received_size) != 0) { in gatt_read_cb()
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/notify/src/
Dgatt_server_test.c19 const uint8_t long_chrc_data[] = { LISTIFY(LONG_CHRC_SIZE, ARRAY_ITEM, (,)) }; /* 1, 2, 3 ... */ variable
73 return bt_gatt_attr_read(conn, attr, buf, len, offset, (void *)long_chrc_data, in read_long_test_chrc()
74 sizeof(long_chrc_data)); in read_long_test_chrc()
150 .data = long_chrc_data, in long_notify()
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/notify_multiple/src/
Dgatt_server_test.c19 const uint8_t long_chrc_data[] = { LISTIFY(LONG_CHRC_SIZE, ARRAY_ITEM, (,)) }; /* 1, 2, 3 ... */ variable
106 .data = long_chrc_data, in multiple_notify()