Home | History | Annotate | Download | only in init

Lines Matching defs:stat

24 #include <sys/stat.h>
114 // /proc/<pid>/stat only has truncated task names, so get the full
120 // Read process stat line.
121 std::string stat;
122 if (android::base::ReadFileToString(StringPrintf("/proc/%d/stat", pid), &stat)) {
125 size_t open = stat.find('(');
126 size_t close = stat.find_last_of(')');
128 stat.replace(open + 1, close - open - 1, full_name);
131 fputs(stat.c_str(), log);
158 log_file(&*stat_log, "/proc/stat");