Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/subsys/logging/
Dlog_cache.h30 struct log_cache { struct
39 int log_cache_init(struct log_cache *cache, const struct log_cache_config *config); argument
50 bool log_cache_get(struct log_cache *cache, uintptr_t id, uint8_t **data);
58 void log_cache_put(struct log_cache *cache, uint8_t *data);
68 void log_cache_release(struct log_cache *cache, uint8_t *data);
76 static inline uint32_t log_cache_get_hit(struct log_cache *cache) in log_cache_get_hit()
87 static inline uint32_t log_cache_get_miss(struct log_cache *cache) in log_cache_get_miss()
Dlog_cache.c22 int log_cache_init(struct log_cache *cache, const struct log_cache_config *config) in log_cache_init()
46 bool log_cache_get(struct log_cache *cache, uintptr_t id, uint8_t **data) in log_cache_get()
90 void log_cache_put(struct log_cache *cache, uint8_t *data) in log_cache_put()
98 void log_cache_release(struct log_cache *cache, uint8_t *data) in log_cache_release()
DCMakeLists.txt13 log_cache.c
Dlog_mgmt.c45 static struct log_cache dname_cache;
46 static struct log_cache sname_cache;
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/
DCMakeLists.txt5 project(log_cache) project
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/src/
Dmain.c61 static void cache_get(struct log_cache *cache, uintptr_t id, in cache_get()
91 struct log_cache cache; in ZTEST()