Lines Matching +full:0 +full:x56

19 	0xf0, 0xde, 0xbc, 0x9a, 0x78, 0x56, 0x34, 0x12,
20 0x78, 0x56, 0x34, 0x12, 0x78, 0x56, 0x34, 0x12);
22 0xf2, 0xde, 0xbc, 0x9a, 0x78, 0x56, 0x34, 0x12,
23 0x78, 0x56, 0x34, 0x12, 0x78, 0x56, 0x34, 0x12);
25 static uint8_t test_value[] = { 'T', 'e', 's', 't', '\0' };
28 0xf4, 0xde, 0xbc, 0x9a, 0x78, 0x56, 0x34, 0x12,
29 0x78, 0x56, 0x34, 0x12, 0x78, 0x56, 0x34, 0x12);
32 0xf5, 0xde, 0xbc, 0x9a, 0x78, 0x56, 0x34, 0x12,
33 0x78, 0x56, 0x34, 0x12, 0x78, 0x56, 0x34, 0x12);
39 nfy_enabled = (value == BT_GATT_CCC_NOTIFY) ? 1 : 0; in test1_ccc_cfg_changed()
174 for (int i = 0; i < 10; i++) { in ZTEST()
176 /* Check that the handles are initially 0x0000 before registering the service */ in ZTEST()
177 for (int j = 0; j < local_test_svc.attr_count; j++) { in ZTEST()
178 zassert_equal(local_test_svc.attrs[j].handle, 0x0000, in ZTEST()
189 for (int j = 0; j < local_test_svc.attr_count; j++) { in ZTEST()
190 zassert_equal(local_test_svc.attrs[j].handle, 0x0000, in ZTEST()
238 for (int i = 0; i < prealloc_test_svc.attr_count; i++) { in ZTEST()
239 prealloc_test_svc.attrs[i].handle = 0x0100 + i; in ZTEST()
241 for (int i = 0; i < prealloc_test1_svc.attr_count; i++) { in ZTEST()
242 prealloc_test1_svc.attrs[i].handle = 0x0200 + i; in ZTEST()
252 for (int i = 0; i < prealloc_test_svc.attr_count; i++) { in ZTEST()
253 zassert_equal(prealloc_test_svc.attrs[i].handle, 0x0100 + i, in ZTEST()
301 for (int j = 0; j < prealloc_test_svc.attr_count; j++) { in ZTEST()
302 prealloc_test_svc.attrs[j].handle = 0x0100 + j; in ZTEST()
312 for (int i = 0; i < prealloc_test_svc.attr_count; i++) { in ZTEST()
313 zassert_equal(prealloc_test_svc.attrs[i].handle, 0x0100 + i, in ZTEST()
353 uint16_t num = 0; in ZTEST()
362 bt_gatt_foreach_attr(test_attrs[0].handle, 0xffff, count_attr, &num); in ZTEST()
366 num = 0; in ZTEST()
367 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, NULL, NULL, 1, in ZTEST()
373 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
374 &test_chrc_uuid.uuid, NULL, 0, find_attr, in ZTEST()
384 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, NULL, in ZTEST()
385 test_value, 0, find_attr, &attr); in ZTEST()
393 num = 0; in ZTEST()
394 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
395 BT_UUID_GATT_CHRC, NULL, 0, count_attr, &num); in ZTEST()
400 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
406 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
426 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
427 &test_chrc_uuid.uuid, NULL, 0, find_attr, in ZTEST()
433 ret = attr->read(NULL, attr, (void *)buf, sizeof(buf), 0); in ZTEST()
452 bt_gatt_foreach_attr_type(test_attrs[0].handle, 0xffff, in ZTEST()
453 &test_chrc_uuid.uuid, NULL, 0, find_attr, in ZTEST()
457 ret = attr->write(NULL, attr, (void *)value, strlen(value), 0, 0); in ZTEST()
474 zassert_mem_equal(bt_att_err_to_str(0x14), in ZTEST()
476 zassert_mem_equal(bt_att_err_to_str(0xFB), in ZTEST()
479 for (uint16_t i = 0; i <= UINT8_MAX; i++) { in ZTEST()
495 zassert_mem_equal(bt_gatt_err_to_str(BT_GATT_ERR(0x14)), in ZTEST()
497 zassert_mem_equal(bt_gatt_err_to_str(BT_GATT_ERR(0xFB)), in ZTEST()
501 for (uint16_t i = 0; i <= UINT8_MAX; i++) { in ZTEST()
506 for (uint16_t i = 0; i <= UINT8_MAX; i++) { in ZTEST()