Home
last modified time | relevance | path

Searched refs:sys_hashmap_get (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.5.0/tests/lib/hash_map/src/
Dget.c19 zassert_true(sys_hashmap_get(&map, 0, NULL)); in ZTEST()
20 zassert_true(sys_hashmap_get(&map, 0, &value)); in ZTEST()
29 zassert_true(sys_hashmap_get(&map, i, NULL)); in ZTEST()
40 zassert_false(sys_hashmap_get(&map, 73, &value)); in ZTEST()
48 zassert_false(sys_hashmap_get(&map, 0x4242424242424242ULL, NULL)); in ZTEST()
/Zephyr-Core-3.5.0/include/zephyr/sys/
Dhash_map.h220 static inline bool sys_hashmap_get(const struct sys_hashmap *map, uint64_t key, uint64_t *value) in sys_hashmap_get() function
236 return sys_hashmap_get(map, key, NULL); in sys_hashmap_contains_key()