Lines Matching refs:esp_log_level_t
65 esp_log_level_t esp_log_default_level = CONFIG_BOOTLOADER_LOG_LEVEL;
78 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level);
79 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level);
80 static inline void add_to_cache(const char *tag, esp_log_level_t level);
83 static inline bool should_output(esp_log_level_t level_for_message, esp_log_level_t level_for_tag);
95 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set()
150 static esp_log_level_t s_log_level_get_and_unlock(const char *tag) in s_log_level_get_and_unlock()
152 esp_log_level_t level_for_tag; in s_log_level_get_and_unlock()
168 esp_log_level_t esp_log_level_get(const char *tag) in esp_log_level_get()
188 void esp_log_writev(esp_log_level_t level, in esp_log_writev()
196 esp_log_level_t level_for_tag = s_log_level_get_and_unlock(tag); in esp_log_writev()
205 void esp_log_write(esp_log_level_t level, in esp_log_write()
215 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level) in get_cached_log_level()
231 *level = (esp_log_level_t) s_log_cache[i].level; in get_cached_log_level()
246 static inline void add_to_cache(const char *tag, esp_log_level_t level) in add_to_cache()
273 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level) in get_uncached_log_level()
287 static inline bool should_output(esp_log_level_t level_for_message, esp_log_level_t level_for_tag) in should_output()