Searched defs:dstat (Results 1 - 2 of 2) sorted by relevance

/external/blktrace/
H A Dblkiomon.c61 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
179 struct dstat *dstat; local
200 struct dstat *dstat; local
226 blkiomon_output_msg_q(struct dstat *dstat) argument
235 blkiomon_output_binary(struct dstat *dstat) argument
257 struct dstat *dstat, *tail = NULL; local
311 struct dstat *dstat; local
[all...]
/external/oprofile/gui/
H A Doprof_start.cpp406 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 996 milliseconds