Lines Matching defs:map

26 DECLARE_RC_STRUCT(map) {  in DECLARE_RC_STRUCT()  argument
46 static inline struct dso *map__dso(const struct map *map) in map__dso()
51 static inline u64 map__start(const struct map *map) in map__start()
56 static inline u64 map__end(const struct map *map) in map__end()
61 static inline u64 map__pgoff(const struct map *map) in map__pgoff()
66 static inline u64 map__reloc(const struct map *map) in map__reloc()
71 static inline u32 map__flags(const struct map *map) in map__flags()
76 static inline u32 map__prot(const struct map *map) in map__prot()
81 static inline bool map__priv(const struct map *map) in map__priv()
86 static inline refcount_t *map__refcnt(struct map *map) in map__refcnt()
91 static inline bool map__erange_warned(struct map *map) in map__erange_warned()
96 static inline size_t map__size(const struct map *map) in map__size()
102 static inline u64 map__dso_map_ip(const struct map *map, u64 ip) in map__dso_map_ip()
108 static inline u64 map__dso_unmap_ip(const struct map *map, u64 rip) in map__dso_unmap_ip()
113 static inline u64 map__map_ip(const struct map *map, u64 ip_or_rip) in map__map_ip()
121 static inline u64 map__unmap_ip(const struct map *map, u64 ip_or_rip) in map__unmap_ip()
145 #define map__for_each_symbol(map, pos, n) \ argument
156 #define __map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
163 #define map__for_each_symbol_by_name(map, sym_name, pos, idx) \ argument
179 static inline struct map *map__get(struct map *map) in map__get()
191 static inline void __map__zput(struct map **map) in __map__zput()
197 #define map__zput(map) __map__zput(&map) argument
222 static inline bool __map__is_kmodule(const struct map *map) in __map__is_kmodule()
260 static inline void map__set_start(struct map *map, u64 start) in map__set_start()
265 static inline void map__set_end(struct map *map, u64 end) in map__set_end()
270 static inline void map__set_pgoff(struct map *map, u64 pgoff) in map__set_pgoff()
275 static inline void map__add_pgoff(struct map *map, u64 inc) in map__add_pgoff()
280 static inline void map__set_reloc(struct map *map, u64 reloc) in map__set_reloc()
285 static inline void map__set_priv(struct map *map, int priv) in map__set_priv()
290 static inline void map__set_erange_warned(struct map *map, bool erange_warned) in map__set_erange_warned()
295 static inline void map__set_dso(struct map *map, struct dso *dso) in map__set_dso()
300 static inline void map__set_mapping_type(struct map *map, enum mapping_type type) in map__set_mapping_type()
305 static inline enum mapping_type map__mapping_type(struct map *map) in map__mapping_type()