Lines Matching defs:map
26 DECLARE_RC_STRUCT(map) { in DECLARE_RC_STRUCT() argument
47 static inline struct dso *map__dso(const struct map *map) in map__dso()
52 static inline u64 map__start(const struct map *map) in map__start()
57 static inline u64 map__end(const struct map *map) in map__end()
62 static inline u64 map__pgoff(const struct map *map) in map__pgoff()
67 static inline u64 map__reloc(const struct map *map) in map__reloc()
72 static inline u32 map__flags(const struct map *map) in map__flags()
77 static inline u32 map__prot(const struct map *map) in map__prot()
82 static inline bool map__priv(const struct map *map) in map__priv()
87 static inline bool map__hit(const struct map *map) in map__hit()
92 static inline refcount_t *map__refcnt(struct map *map) in map__refcnt()
97 static inline bool map__erange_warned(struct map *map) in map__erange_warned()
102 static inline size_t map__size(const struct map *map) in map__size()
108 static inline u64 map__dso_map_ip(const struct map *map, u64 ip) in map__dso_map_ip()
114 static inline u64 map__dso_unmap_ip(const struct map *map, u64 rip) in map__dso_unmap_ip()
119 static inline u64 map__map_ip(const struct map *map, u64 ip_or_rip) in map__map_ip()
127 static inline u64 map__unmap_ip(const struct map *map, u64 ip_or_rip) in map__unmap_ip()
154 #define map__for_each_symbol(map, pos, n) \ argument
165 #define __map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
172 #define map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
185 static inline struct map *map__get(struct map *map) in map__get()
197 static inline void __map__zput(struct map **map) in __map__zput()
203 #define map__zput(map) __map__zput(&map) argument
228 static inline bool __map__is_kmodule(const struct map *map) in __map__is_kmodule()
266 static inline void map__set_start(struct map *map, u64 start) in map__set_start()
271 static inline void map__set_end(struct map *map, u64 end) in map__set_end()
276 static inline void map__set_pgoff(struct map *map, u64 pgoff) in map__set_pgoff()
281 static inline void map__add_pgoff(struct map *map, u64 inc) in map__add_pgoff()
286 static inline void map__set_reloc(struct map *map, u64 reloc) in map__set_reloc()
291 static inline void map__set_priv(struct map *map) in map__set_priv()
296 static inline void map__set_hit(struct map *map) in map__set_hit()
301 static inline void map__set_erange_warned(struct map *map) in map__set_erange_warned()
306 static inline void map__set_dso(struct map *map, struct dso *dso) in map__set_dso()
311 static inline void map__set_mapping_type(struct map *map, enum mapping_type type) in map__set_mapping_type()
316 static inline enum mapping_type map__mapping_type(struct map *map) in map__mapping_type()