Home | History | Annotate | Download | only in base

Lines Matching defs:cache

115   PathMap cache;        // Cache mappings from path key to path value.
118 bool cache_disabled; // Don't use cache if true;
149 // Tries to find |key| in the cache. |path_data| should be locked by the caller!
154 PathMap::const_iterator it = path_data->cache.find(key);
155 if (it != path_data->cache.end()) {
169 path_data->cache[key] = it->second;
229 path_data->cache[key] = path;
268 // Clear the cache now. Some of its entries could have depended
270 path_data->cache.clear();
287 // Clear the cache now. Some of its entries could have depended on the value
289 path_data->cache.clear();
334 path_data->cache.clear();