/tools/perf/scripts/python/ |
D | event_analyzing_sample.py | 137 for row in commq: 138 print("%16s %8d %s" % (row[0], row[1], num2sym(row[1]))) 143 for row in symbolq: 144 print("%32s %8d %s" % (row[0], row[1], num2sym(row[1]))) 149 for row in dsoq: 150 print("%40s %8d %s" % (row[0], row[1], num2sym(row[1]))) 170 for row in commq: 171 print("%16s %8d %s" % (row[0], row[1], num2sym(row[1]))) 176 for row in symbolq: 177 print("%32s %8d %s" % (row[0], row[1], num2sym(row[1]))) [all …]
|
D | exported-sql-viewer.py | 248 def index(self, row, column, parent): argument 249 child_item = self.Item(parent).getChildItem(row) 250 return self.createIndex(row, column, child_item) 255 def FetchIfNeeded(self, row): argument 256 if row > self.last_row_read: 257 self.last_row_read = row 258 if row + 10 >= self.root.child_count: 305 def index(self, row, column, parent): argument 306 return self.createIndex(row, column, self.child_items[row]) 311 def FetchIfNeeded(self, row): argument [all …]
|
/tools/perf/ui/ |
D | browser.c | 171 int row = 0; in ui_browser__rb_tree_refresh() local 179 ui_browser__gotorc(browser, row, 0); in ui_browser__rb_tree_refresh() 180 browser->write(browser, nd, row); in ui_browser__rb_tree_refresh() 181 if (++row == browser->rows) in ui_browser__rb_tree_refresh() 186 return row; in ui_browser__rb_tree_refresh() 189 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row) in ui_browser__is_current_entry() argument 191 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry() 314 row = 0; in ui_browser__scrollbar_set() local 324 ui_browser__gotorc(browser, row++, col); in ui_browser__scrollbar_set() 334 int row; in __ui_browser__refresh() local [all …]
|
D | browser.h | 29 void (*write)(struct ui_browser *browser, void *entry, int row); 40 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row); 54 unsigned int row, bool arrow_down);
|
/tools/perf/ui/browsers/ |
D | hists.c | 734 unsigned short row, 740 unsigned short row, in hist_browser__show_callchain_entry() argument 749 if (ui_browser__is_current_entry(&browser->b, row)) { in hist_browser__show_callchain_entry() 756 ui_browser__gotorc(&browser->b, row, 0); in hist_browser__show_callchain_entry() 766 unsigned short row __maybe_unused, in hist_browser__fprintf_callchain_entry() 776 unsigned short row); 779 unsigned short row) in hist_browser__check_output_full() argument 781 return browser->b.rows == row; in hist_browser__check_output_full() 785 unsigned short row __maybe_unused) in hist_browser__check_dump_full() 795 unsigned short row, u64 total, in hist_browser__show_callchain_list() argument [all …]
|
D | header.c | 13 void *entry, int row) in ui_browser__argv_write() argument 18 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write()
|
D | map.c | 25 static void map_browser__write(struct ui_browser *browser, void *nd, int row) in map_browser__write() argument 29 bool current_entry = ui_browser__is_current_entry(browser, row); in map_browser__write()
|
D | annotate.c | 96 static void annotate_browser__write(struct ui_browser *browser, void *entry, int row) in annotate_browser__write() argument 101 const bool is_current_entry = ui_browser__is_current_entry(browser, row); in annotate_browser__write() 103 .first_line = row == 0, in annotate_browser__write()
|
/tools/kvm/kvm_stat/ |
D | kvm_stat | 1042 def _print_all_gnames(self, row): argument 1044 self.screen.addstr(row, 2, '%8s %-60s' % 1048 row += 1 1051 self.screen.addstr(row, 2, '%8s %-60s' % (line[0], line[1])) 1052 row += 1 1053 if row >= self.screen.getmaxyx()[0]: 1056 self.screen.addstr(row + 1, 2, 'Not available') 1197 row = 3 1198 self.screen.move(row, 0) 1221 if row >= self.screen.getmaxyx()[0] - 1 or values == (0, 0): [all …]
|
/tools/perf/ui/tui/ |
D | util.c | 16 void *entry, int row) in ui_browser__argv_write() argument 19 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write()
|
/tools/perf/util/ |
D | svghelper.h | 30 void svg_interrupt(u64 start, int row, const char *backtrace);
|
D | svghelper.c | 581 void svg_interrupt(u64 start, int row, const char *backtrace) in svg_interrupt() argument 594 time2pixels(start), row * SLOT_MULT); in svg_interrupt() 596 time2pixels(start), row * SLOT_MULT + SLOT_HEIGHT); in svg_interrupt()
|
D | hist.c | 228 int row = 0; in hists__output_recalc_col_len() local 232 while (next && row++ < max_rows) { in hists__output_recalc_col_len()
|
/tools/power/pm-graph/ |
D | sleepgraph.py | 1920 self.row = 0 2474 item.row = -1 2479 row = 1 2482 if(row not in rowdata): 2483 rowdata[row] = [] 2485 if(i.row >= 0): 2490 for ritem in rowdata[row]: 2498 rowdata[row].append(i) 2499 i.row = row 2501 row += 1 [all …]
|
/tools/power/cpupower/bench/ |
D | README-BENCH | 35 will be run X time in a row (cycles):
|
/tools/memory-model/litmus-tests/ |
D | README | 177 left-hand end of the second row of tests on page one of test6.pdf.
|
/tools/perf/Documentation/ |
D | perf-stat.txt | 308 in a single row. This option disables that behavior and shows
|