Searched refs:log_cache (Results 1 – 6 of 6) sorted by relevance
/Zephyr-Core-3.5.0/subsys/logging/ |
D | log_cache.h | 30 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()
|
D | log_cache.c | 22 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()
|
D | CMakeLists.txt | 13 log_cache.c
|
D | log_mgmt.c | 45 static struct log_cache dname_cache; 46 static struct log_cache sname_cache;
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/ |
D | CMakeLists.txt | 5 project(log_cache) project
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/src/ |
D | main.c | 61 static void cache_get(struct log_cache *cache, uintptr_t id, in cache_get() 91 struct log_cache cache; in ZTEST()
|