Lines Matching refs:string
42 std::string statm;
43 std::string vss;
44 std::string rss;
46 std::string statmPath = "/proc/" + std::to_string(pid) + "/statm";
64 std::string filename = "/proc/" + std::to_string(pid) + "/smaps_rollup";
71 std::string content;
73 std::string::size_type typePos = content.find(":");
75 std::string type = content.substr(0, typePos);
77 std::string valueStr = content.substr(typePos + 1);
92 std::string filename = "/proc/" + std::to_string(pid) + "/smaps_rollup";
99 std::string content;
101 std::string::size_type typePos = content.find(":");
103 std::string type = content.substr(0, typePos);
105 std::string valueStr = content.substr(typePos + 1);
125 const std::vector<std::pair<MemoryTrackerType, std::string>> MEMORY_TRACKER_TYPES = {