Lines Matching full:others
142 ProcStatEntry others; in getProcStatMetric() local
143 others.cmdline = "(Others)"; in getProcStatMetric()
144 others.utime = others.stime = 0; in getProcStatMetric()
147 // "others" in order to keep the size of the snapshot reasonably small. in getProcStatMetric()
167 others.utime += entry.utime; in getProcStatMetric()
168 others.stime += entry.stime; in getProcStatMetric()
190 .sidx_cmdline = obj.getStringID(others.cmdline), in getProcStatMetric()
191 .utime = others.utime, in getProcStatMetric()
192 .stime = others.stime, in getProcStatMetric()
269 // and collapse all others into "others". in getFdStatMetric()
272 FdStatEntry others; in getFdStatMetric() local
273 others.cmdline = "(Others)"; in getFdStatMetric()
274 others.fdCount = 0; in getFdStatMetric()
286 others.fdCount += entry.fdCount; in getFdStatMetric()
306 .sidx_cmdline = obj.getStringID(others.cmdline), in getFdStatMetric()
307 .fd_count = others.fdCount, in getFdStatMetric()