Lines Matching refs:esp_log_level_t
61 esp_log_level_t esp_log_default_level = CONFIG_BOOTLOADER_LOG_LEVEL;
73 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level);
74 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level);
75 static inline void add_to_cache(const char *tag, esp_log_level_t level);
78 static inline bool should_output(esp_log_level_t level_for_message, esp_log_level_t level_for_tag);
91 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set()
146 static esp_log_level_t s_log_level_get_and_unlock(const char *tag) in s_log_level_get_and_unlock()
148 esp_log_level_t level_for_tag; in s_log_level_get_and_unlock()
164 esp_log_level_t esp_log_level_get(const char *tag) in esp_log_level_get()
184 void esp_log_writev(esp_log_level_t level, in esp_log_writev()
192 esp_log_level_t level_for_tag = s_log_level_get_and_unlock(tag); in esp_log_writev()
201 void esp_log_write(esp_log_level_t level, in esp_log_write()
211 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level) in get_cached_log_level()
227 *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()
285 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level) in get_uncached_log_level()
299 static inline bool should_output(esp_log_level_t level_for_message, esp_log_level_t level_for_tag) in should_output()