Lines Matching refs:d

144 	for (uint8_t d = 0; d < log_domains_count(); d++) {  in ZTEST()  local
145 uint16_t source_cnt = log_src_cnt_get(d); in ZTEST()
147 zassert_equal(source_cnt, exp_source_cnt[d], in ZTEST()
148 "Unexpected source count (%d:%d)", d, source_cnt); in ZTEST()
152 static void test_single_compile_level(uint8_t d, uint16_t s, uint32_t exp_level) in test_single_compile_level() argument
154 uint32_t level = log_filter_get(NULL, d, s, false); in test_single_compile_level()
158 d, s, level, exp_level); in test_single_compile_level()
172 static void test_single_runtime_level(uint8_t d, uint16_t s, uint8_t *link_level) in test_single_runtime_level() argument
177 level1 = log_filter_get(&backend1, d, s, true); in test_single_runtime_level()
178 level2 = log_filter_get(&backend2, d, s, true); in test_single_runtime_level()
181 d, s, level1, *link_level); in test_single_runtime_level()
184 d, s, level2, MIN(*link_level, LOG_LEVEL_INF)); in test_single_runtime_level()
186 log_filter_set(&backend1, d, s, 1); in test_single_runtime_level()
187 log_filter_set(&backend2, d, s, 2); in test_single_runtime_level()
188 level1 = log_filter_get(&backend1, d, s, true); in test_single_runtime_level()
189 level2 = log_filter_get(&backend2, d, s, true); in test_single_runtime_level()
191 d, s, level1, 1); in test_single_runtime_level()
193 d, s, level2, 2); in test_single_runtime_level()
198 d, s, *link_level, 2); in test_single_runtime_level()
224 static void test_single_log_source_name_get(uint8_t d, uint16_t s, in test_single_log_source_name_get() argument
227 const char *name = log_source_name_get(d, s); in test_single_log_source_name_get()
230 d, s); in test_single_log_source_name_get()