Home | History | Annotate | Download | only in procstatlog

Lines Matching refs:next

286     struct data *next = stats;
290 read_data(next++, filename);
292 read_data(next++, filename);
296 next += read_proc_yaffs(next, stats + stats_count - next);
297 next += read_lines("/proc/net/dev", ':', NULL, 0, next, end - next);
298 next += read_lines("/proc/stat", ' ', NULL, 0, next, end - next);
299 next += read_lines("/proc/binder/stats", ':', "\nproc ", 0, next, end - next);
300 next += read_lines("/proc/diskstats", ' ', NULL, 2, next, end - next);
301 next += read_lines(
303 ' ', NULL, 0, next, end - next);
305 assert(next < stats + stats_count);
306 next->name = NULL;
307 next->value = NULL;
308 qsort(stats, next - stats, sizeof(struct data), compare_data);
312 // Print stats which have changed from one sorted array to the next.