Home
last modified time | relevance | path

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

/device/soc/bestechnic/bes2600/liteos_m/sdk/bsp/platform/hal/
Dhal_trace.c396 static uint32_t trace_mod_map[(TR_MODULE_QTY + 31) / 32]; variable
923 for (int i = 0; i < ARRAY_SIZE(trace_mod_map); i++) { in hal_trace_open()
924 trace_mod_map[i] = ~0; in hal_trace_open()
1077 trace_mod_map[module >> 5] |= (1 << (module & 0x1F)); in hal_trace_enable_log_module()
1087 trace_mod_map[module >> 5] &= ~(1 << (module & 0x1F)); in hal_trace_disable_log_module()
1097 if (word_cnt > ARRAY_SIZE(trace_mod_map)) { in hal_trace_set_log_module()
1098 word_cnt = ARRAY_SIZE(trace_mod_map); in hal_trace_set_log_module()
1101 trace_mod_map[i] = map[i]; in hal_trace_set_log_module()
1823 … if (level > TR_LEVEL_CRITICAL && (trace_mod_map[module >> 5] & (1 << (module & 0x1F))) == 0) { in hal_trace_printf_internal()
3843 … if (level > TR_LEVEL_CRITICAL && (trace_mod_map[module >> 5] & (1 << (module & 0x1F))) == 0) { in hal_trace_crash_dump_printf()