HomeSort by relevance Sort by last modified time
    Searched full:dstat (Results 1 - 2 of 2) sorted by null

  /external/blktrace/
blkiomon.c 61 struct dstat { struct
64 struct dstat *next;
85 static struct dstat *vacant_dstats_list = NULL;
87 static struct dstat *dstat_list[2] = {};
156 static struct dstat *blkiomon_alloc_dstat(void)
158 struct dstat *dstat; local
161 dstat = vacant_dstats_list;
162 vacant_dstats_list = dstat->next;
164 dstat = malloc(sizeof(*dstat))
179 struct dstat *dstat; local
200 struct dstat *dstat; local
257 struct dstat *dstat, *tail = NULL; local
311 struct dstat *dstat; local
    [all...]
  /external/oprofile/gui/
oprof_start.cpp 406 daemon_status dstat; local
408 flush_profiler_data_btn->setEnabled(dstat.running);
409 stop_profiler_btn->setEnabled(dstat.running);
410 start_profiler_btn->setEnabled(!dstat.running);
411 reset_sample_files_btn->setEnabled(!dstat.running);
413 if (!dstat.running) {
422 total_nr_interrupts += dstat.nr_interrupts;
425 ss << " (" << dstat.nr_interrupts / (curr - last) << " interrupts / second, total " << total_nr_interrupts << ")";

Completed in 62 milliseconds