Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/bluetooth/mesh/
Dnet.c119 static uint32_t dup_cache[CONFIG_BT_MESH_MSG_CACHE_SIZE]; variable
131 if (dup_cache[--i] == val) { in check_dup()
136 for (i = ARRAY_SIZE(dup_cache); i > dup_cache_next;) { in check_dup()
137 if (dup_cache[--i] == val) { in check_dup()
142 dup_cache_next %= ARRAY_SIZE(dup_cache); in check_dup()
143 dup_cache[dup_cache_next++] = val; in check_dup()
916 dup_cache[--dup_cache_next] = 0; in bt_mesh_net_recv()