Home
last modified time | relevance | path

Searched refs:mapping_type (Results 1 – 2 of 2) sorted by relevance

/tools/perf/util/
Dmap.h19 enum mapping_type { enum
35 enum mapping_type mapping_type:8; in DECLARE_RC_STRUCT()
121 if ((RC_CHK_ACCESS(map)->mapping_type) == MAPPING_TYPE__DSO) in map__map_ip()
129 if ((RC_CHK_ACCESS(map)->mapping_type) == MAPPING_TYPE__DSO) in map__unmap_ip()
311 static inline void map__set_mapping_type(struct map *map, enum mapping_type type) in map__set_mapping_type()
313 RC_CHK_ACCESS(map)->mapping_type = type; in map__set_mapping_type()
316 static inline enum mapping_type map__mapping_type(struct map *map) in map__mapping_type()
318 return RC_CHK_ACCESS(map)->mapping_type; in map__mapping_type()
Dmap.c178 map->mapping_type = MAPPING_TYPE__IDENTITY; in map__new()