Searched refs:mem_st (Results 1 – 1 of 1) sorted by relevance
987 static void memory_stat_parse_line(char* line, struct memory_stat* mem_st) { in memory_stat_parse_line() argument998 mem_st->pgfault = value; in memory_stat_parse_line()1000 mem_st->pgmajfault = value; in memory_stat_parse_line()1002 mem_st->rss_in_bytes = value; in memory_stat_parse_line()1004 mem_st->cache_in_bytes = value; in memory_stat_parse_line()1006 mem_st->swap_in_bytes = value; in memory_stat_parse_line()1009 static int memory_stat_from_cgroup(struct memory_stat* mem_st, int pid, uid_t uid) { in memory_stat_from_cgroup() argument1023 memory_stat_parse_line(buf, mem_st); in memory_stat_from_cgroup()1030 static int memory_stat_from_procfs(struct memory_stat* mem_st, int pid) { in memory_stat_from_procfs() argument1061 mem_st->pgfault = pgfault; in memory_stat_from_procfs()[all …]