Home
last modified time | relevance | path

Searched refs:returned_ref (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_find_irk/src/
Dmain.c100 struct bt_keys *returned_ref; in ZTEST() local
109 returned_ref = bt_keys_find_irk(id, addr); in ZTEST()
111 zassert_true(returned_ref == NULL, in ZTEST()
151 struct bt_keys *returned_ref; in ZTEST() local
162 returned_ref = bt_keys_find_irk(id, addr); in ZTEST()
164 zassert_true(returned_ref == NULL, in ZTEST()
186 struct bt_keys *returned_ref, *expected_key_ref; in ZTEST() local
209 returned_ref = bt_keys_find_irk(id, addr); in ZTEST()
213 zassert_true(returned_ref != NULL, in ZTEST()
216 zassert_equal_ptr(returned_ref, expected_key_ref, in ZTEST()
[all …]
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_find_addr/src/
Dmain.c61 struct bt_keys *returned_ref; in ZTEST() local
66 returned_ref = bt_keys_find_addr(id, addr); in ZTEST()
68 zassert_true(returned_ref == NULL, "bt_keys_find() returned a non-NULL reference"); in ZTEST()
97 struct bt_keys *returned_ref, *expected_key_ref; in ZTEST() local
104 returned_ref = bt_keys_find_addr(id, addr); in ZTEST()
106 zassert_true(returned_ref != NULL, "bt_keys_find_addr() returned a NULL reference"); in ZTEST()
107 zassert_equal_ptr(returned_ref, expected_key_ref, in ZTEST()
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_find/src/
Dmain.c57 struct bt_keys *returned_ref; in ZTEST() local
63 returned_ref = bt_keys_find(type, id, addr); in ZTEST()
64 zassert_true(returned_ref == NULL, "bt_keys_find() returned a non-NULL reference"); in ZTEST()
96 struct bt_keys *returned_ref, *expected_key_ref; in ZTEST() local
106 returned_ref = bt_keys_find(type, id, addr); in ZTEST()
108 zassert_true(returned_ref != NULL, "bt_keys_find() returned a NULL reference"); in ZTEST()
109 zassert_equal_ptr(returned_ref, expected_key_ref, in ZTEST()
/Zephyr-latest/tests/bluetooth/host/keys/bt_keys_get_addr/src/
Dmain.c110 struct bt_keys *returned_ref = returned_keys_refs[i]; in ZTEST() local
112 zassert_equal_ptr(keys_pool + i, returned_ref, in ZTEST()