Searched refs:id0 (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/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-latest/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()
|
/Zephyr-latest/tests/subsys/logging/log_frontend_stmesp_demux/src/ |
D | main.c | 382 uint16_t id0 = 2; in ZTEST() local 384 uint16_t c_id0 = CONFIG_LOG_FRONTEND_STMESP_TP_CHAN_BASE + id0; in ZTEST()
|