Searched refs:log_cache (Results  1 – 6 of 6) sorted by relevance
| /Zephyr-latest/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 | 24 int log_cache_init(struct log_cache *cache, const struct log_cache_config *config)  in log_cache_init() 53 bool log_cache_get(struct log_cache *cache, uintptr_t id, uint8_t **data)  in log_cache_get() 97 void log_cache_put(struct log_cache *cache, uint8_t *data)  in log_cache_put() 105 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-latest/tests/subsys/logging/log_cache/ | 
| D | CMakeLists.txt | 5 project(log_cache)  project
  | 
| /Zephyr-latest/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()
  |