Home | History | Annotate | Download | only in pagemap

Lines Matching refs:map

89 /* Get the map count (from /proc/kpagecount) of a physical frame.
174 /* Get the name, flags, start/end address, or offset of a map. */
175 #define pm_map_name(map) ((map)->name)
176 #define pm_map_flags(map) ((map)->flags)
181 #define pm_map_start(map) ((map)->start)
182 #define pm_map_end(map) ((map)->end)
183 #define pm_map_offset(map) ((map)->offset)
185 /* Get the PFNs of the pages in the virtual address space of this map.
188 int pm_map_pagemap(pm_map_t *map, uint64_t **pagemap_out, size_t *len);
190 /* Get the memory usage of this map alone. */
191 int pm_map_usage(pm_map_t *map, pm_memusage_t *usage_out);
193 /* Get the memory usage of this map alone, only counting pages with specified
195 int pm_map_usage_flags(pm_map_t *map, pm_memusage_t *usage_out,
198 /* Get the working set of this map alone. */
199 int pm_map_workingset(pm_map_t *map, pm_memusage_t *ws_out);