Lines Matching refs:dso_cache
805 struct dso_cache *cache; in dso_cache__free()
807 cache = rb_entry(next, struct dso_cache, rb_node); in dso_cache__free()
815 static struct dso_cache *__dso_cache__find(struct dso *dso, u64 offset) in __dso_cache__find()
820 struct dso_cache *cache; in __dso_cache__find()
826 cache = rb_entry(parent, struct dso_cache, rb_node); in __dso_cache__find()
840 static struct dso_cache *
841 dso_cache__insert(struct dso *dso, struct dso_cache *new) in dso_cache__insert()
846 struct dso_cache *cache; in dso_cache__insert()
854 cache = rb_entry(parent, struct dso_cache, rb_node); in dso_cache__insert()
874 static ssize_t dso_cache__memcpy(struct dso_cache *cache, u64 offset, u8 *data, in dso_cache__memcpy()
912 static struct dso_cache *dso_cache__populate(struct dso *dso, in dso_cache__populate()
917 struct dso_cache *cache; in dso_cache__populate()
918 struct dso_cache *old; in dso_cache__populate()
953 static struct dso_cache *dso_cache__find(struct dso *dso, in dso_cache__find()
958 struct dso_cache *cache = __dso_cache__find(dso, offset); in dso_cache__find()
966 struct dso_cache *cache; in dso_cache_io()