Lines Matching defs:map

19 DECLARE_RC_STRUCT(map) {  in DECLARE_RC_STRUCT()  argument
51 static inline struct dso *map__dso(const struct map *map) in map__dso()
56 static inline u64 map__map_ip(const struct map *map, u64 ip) in map__map_ip()
61 static inline u64 map__unmap_ip(const struct map *map, u64 ip) in map__unmap_ip()
66 static inline void *map__map_ip_ptr(struct map *map) in map__map_ip_ptr()
71 static inline void* map__unmap_ip_ptr(struct map *map) in map__unmap_ip_ptr()
76 static inline u64 map__start(const struct map *map) in map__start()
81 static inline u64 map__end(const struct map *map) in map__end()
86 static inline u64 map__pgoff(const struct map *map) in map__pgoff()
91 static inline u64 map__reloc(const struct map *map) in map__reloc()
96 static inline u32 map__flags(const struct map *map) in map__flags()
101 static inline u32 map__prot(const struct map *map) in map__prot()
106 static inline bool map__priv(const struct map *map) in map__priv()
111 static inline refcount_t *map__refcnt(struct map *map) in map__refcnt()
116 static inline bool map__erange_warned(struct map *map) in map__erange_warned()
121 static inline size_t map__size(const struct map *map) in map__size()
142 #define map__for_each_symbol(map, pos, n) \ argument
153 #define __map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
160 #define map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
176 static inline struct map *map__get(struct map *map) in map__get()
188 static inline void __map__zput(struct map **map) in __map__zput()
194 #define map__zput(map) __map__zput(&map) argument
219 static inline bool __map__is_kmodule(const struct map *map) in __map__is_kmodule()
257 static inline void map__set_start(struct map *map, u64 start) in map__set_start()
262 static inline void map__set_end(struct map *map, u64 end) in map__set_end()
267 static inline void map__set_pgoff(struct map *map, u64 pgoff) in map__set_pgoff()
272 static inline void map__add_pgoff(struct map *map, u64 inc) in map__add_pgoff()
277 static inline void map__set_reloc(struct map *map, u64 reloc) in map__set_reloc()
282 static inline void map__set_priv(struct map *map, int priv) in map__set_priv()
287 static inline void map__set_erange_warned(struct map *map, bool erange_warned) in map__set_erange_warned()
292 static inline void map__set_dso(struct map *map, struct dso *dso) in map__set_dso()
297 static inline void map__set_map_ip(struct map *map, u64 (*map_ip)(const struct map *map, u64 ip)) in map__set_map_ip()
302 static inline void map__set_unmap_ip(struct map *map, u64 (*unmap_ip)(const struct map *map, u64 ri… in map__set_unmap_ip()