Home | History | Annotate | Download | only in getinfo

Lines Matching defs:proc

26 /** Crawls /proc to find processes that are running as root. */
66 File proc = new File("/proc");
67 if (!proc.exists()) {
68 throw new FileNotFoundException(proc + " is missing (man 5 proc)");
72 File[] processDirs = proc.listFiles();
84 * Filters out processes in /proc that are not approved.
115 + " statm expected to have 7 integers (man 5 proc)");
212 /** Returns the name of the process corresponding to its process directory in /proc. */