Searched refs:id0 (Results 1 – 3 of 3) sorted by relevance
/Zephyr-Core-3.7.0/tests/subsys/logging/log_cache/src/ |
D | main.c | 35 static bool cmp(uintptr_t id0, uintptr_t id1) in cmp() argument 37 union test_ids t0 = { .raw = id0 }; in cmp() 92 union test_ids id0 = { in ZTEST() local 109 cache_get(&cache, id0.raw, &buf, false, __LINE__); in ZTEST() 116 cache_get(&cache, id0.raw, &buf, true, __LINE__); in ZTEST() 133 cache_get(&cache, id0.raw, &buf, true, __LINE__); in ZTEST() 141 cache_get(&cache, id0.raw, &buf, false, __LINE__); in ZTEST() 146 cache_get(&cache, id0.raw, &buf, true, __LINE__); in ZTEST()
|
/Zephyr-Core-3.7.0/subsys/logging/ |
D | log_cache.h | 21 typedef bool (*log_cache_cmp_func_t)(uintptr_t id0, uintptr_t id1);
|
D | log_mgmt.c | 58 static bool domain_id_cmp(uintptr_t id0, uintptr_t id1) in domain_id_cmp() argument 60 return id0 == id1; in domain_id_cmp() 63 static bool source_id_cmp(uintptr_t id0, uintptr_t id1) in source_id_cmp() argument 65 union log_source_ids s0 = { .raw = id0 }; in source_id_cmp()
|