Lines Matching defs:Cache
950 struct Cache { struct
951 Cache() : max_cache_entries(get_max_cache_entries_from_flag()) { in Cache() argument
955 ~Cache() { flush(); } in ~Cache() argument
957 void flush() { in flush()
977 void flushPendingRequests() { in flushPendingRequests()
989 int get_max_cache_entries() { return max_cache_entries; } in get_max_cache_entries()
991 int num_entries = 0;
994 Entry mru_list;
995 int last_id = 0;
996 std::vector<Entry> entries;
1022 cache = std::make_unique<Cache>(); in NetConfig() argument