/xen-4.10.0-shim-comet/tools/pygrub/src/ |
A D | GrubConf.py | 92 self.reset(lines) 102 def _parse(self, lines): argument 105 def reset(self, lines): argument 107 self.lines = [] 108 self._parse(lines) 154 self.lines.append(line) 156 self.lines.pop(replace) 271 lines = f.readlines() 278 for l in lines: 370 lines = f.readlines() [all …]
|
A D | LiloConf.py | 10 def __init__(self, lines, path): argument 11 self.reset(lines, path) 20 def reset(self, lines, path): argument 24 self.lines = [] 27 map(self.set_from_line, lines) 42 self.lines.append(line) 44 self.lines.pop(replace) 103 lines = f.readlines() 106 lines = buf.split("\n") 110 for l in lines: [all …]
|
A D | ExtLinuxConf.py | 18 def __init__(self, lines, path): argument 19 self.reset(lines, path) 28 def reset(self, lines, path): argument 32 self.lines = [] 35 map(self.set_from_line, lines) 80 self.lines.append(line) 82 self.lines.pop(replace) 130 def new_image(self, title, lines): argument 142 lines = f.readlines() 145 lines = buf.split("\n") [all …]
|
A D | pygrub | 315 re = len(img.lines) 354 l = self.edit_line(img.lines[curline]) 358 img.lines.pop(curline) 360 img.lines.insert(curline+1, "") 363 img.lines.insert(curline, "") 372 elif curline >= len(img.lines): 373 curline = len(img.lines) - 1 376 origimg.reset(img.lines) 398 lines = [] 408 lines.append(ret) [all …]
|
/xen-4.10.0-shim-comet/scripts/ |
A D | get_maintainer.pl | 1273 return @lines; 1283 return @lines; 1340 @lines = grep(!/${penguin_chiefs}/i, @lines); 1343 return @lines if !@lines; 1854 @lines = mailmap(@lines); 1858 @lines = sort(@lines); 1964 my @lines = (); 1969 @lines = grep(!/${penguin_chiefs}/i, @lines); 1972 last if !@lines; 2083 my @lines; [all …]
|
/xen-4.10.0-shim-comet/xen/drivers/video/ |
A D | vga.c | 53 static unsigned int columns, lines; variable 85 lines = vga_console_info.u.text_mode_3.rows; in video_init() 86 memset(video, 0, columns * lines * 2); in video_init() 169 memset(video, 0, columns * lines * 2); in video_endboot() 188 if ( ++ypos >= lines ) in vga_text_puts() 190 ypos = lines - 1; in vga_text_puts()
|
/xen-4.10.0-shim-comet/tools/python/ |
A D | pylintrc | 251 # Maximum number of lines in a module 252 max-module-lines=1000 260 # * total number of lines 261 # * total number of code lines 262 # * total number of docstring lines 263 # * total number of comments lines 264 # * total number of empty lines 300 # Minimum lines number of a similarity. 301 min-similarity-lines=4
|
/xen-4.10.0-shim-comet/ |
A D | CODING_STYLE | 47 There should be no trailing white space at the end of lines (including 53 Lines should be less than 80 characters in length. Long lines should 101 separate lines and each line should begin with a leading '*'. 106 * Note beginning and end markers on separate lines and leading '*'.
|
A D | MAINTAINERS | 25 PLEASE try to include any credit lines you want added with the 88 One pattern per line. Multiple F: lines acceptable. 102 One regex pattern per line. Multiple K: lines acceptable.
|
/xen-4.10.0-shim-comet/xen/tools/kconfig/ |
A D | nconf.gui.c | 192 int lines = 0; in get_line() local 197 for (i = 0; text[i] != '\0' && lines < line_no; i++) in get_line() 199 lines++; in get_line() 548 int x, y, lines, columns; in show_scroll_win() local 559 getmaxyx(stdscr, lines, columns); in show_scroll_win() 574 win_lines = min(total_lines+4, lines-2); in show_scroll_win() 580 y = (lines-win_lines)/2; in show_scroll_win()
|
A D | nconf.c | 368 int lines = getmaxy(stdscr); in print_function_line() local 372 mvwprintw(main_window, lines-3, offset, in print_function_line() 377 mvwprintw(main_window, lines-3, in print_function_line() 1459 int lines, columns; in setup_windows() local 1461 getmaxyx(stdscr, lines, columns); in setup_windows() 1467 main_window = newwin(lines-2, columns-2, 2, 1); in setup_windows() 1469 mwin_max_lines = lines-7; in setup_windows() 1478 int lines, columns; in main() local 1509 getmaxyx(stdscr, lines, columns); in main() 1510 if (columns < 75 || lines < 20) { in main()
|
/xen-4.10.0-shim-comet/tools/examples/vnc/ |
A D | Xservers | 1 # Configuration lines to go in /etc/X11/xdm/Xservers to
|
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xenctx.c | 83 int lines; member 778 for (i = 1; i < xenctx.lines + 1 && mem_addr < mem_limit; i++) in print_lines() 838 mem_addr + xenctx.lines * xenctx.bytes_per_line); in print_mem() 883 if ( xenctx.lines ) in print_stack() 1138 xenctx.lines = DEFAULT_LINES; in main() 1186 xenctx.lines = INT_MAX - 1; in main() 1188 xenctx.lines = strtol(optarg, NULL, 0); in main() 1189 if ( xenctx.lines < 0 || xenctx.lines == INT_MAX) in main() 1193 prog, xenctx.lines, optarg, INT_MAX); in main()
|
/xen-4.10.0-shim-comet/tools/flask/policy/modules/ |
A D | domU.te | 17 # domains of other types, or add more make_device_model lines for this type.
|
/xen-4.10.0-shim-comet/tools/xenstat/xentop/ |
A D | xentop.c | 81 static int lines(void); 288 static int lines(void) in lines() function 302 if((current_row() < lines()-1)) { in print() 937 move(lines()-1, 2); in do_bottom_line() 1147 if(!batch && current_row() == lines()-1) in top()
|
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/ |
A D | disk.ml | 141 let lines = file_readlines xs_daemon_database in 142 List.iter (fun s -> parse_line s) lines
|
A D | oxenstored.conf.in | 65 # access-log-nb-lines = 13215
|
A D | xenstored.ml | 110 ("xenstored-log-nb-lines", Config.Set_int Logging.xenstored_log_nb_lines); 114 ("access-log-nb-lines", Config.Set_int Logging.access_log_nb_lines);
|
/xen-4.10.0-shim-comet/docs/misc/arm/device-tree/ |
A D | booting.txt | 100 Command lines 104 lines for Xen and Dom0. The logic is the following:
|
/xen-4.10.0-shim-comet/xen/tools/kconfig/lxdialog/ |
A D | util.c | 257 int lines, columns; in dialog_clear() local 259 lines = getmaxy(stdscr); in dialog_clear() 262 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
|
/xen-4.10.0-shim-comet/tools/firmware/vgabios/ |
A D | vgabios.c | 415 ;; switch to color mode and enable CPU access 480 lines 2644 static void set_scan_lines(lines) Bit8u lines; in set_scan_lines() argument 2652 crtc_r9 = (crtc_r9 & 0xe0) | (lines - 1); 2654 if(lines==8) 2660 biosfn_set_cursor_shape(lines-4,lines-3); 2662 write_word(BIOSMEM_SEG,BIOSMEM_CHAR_HEIGHT, lines); 2668 rows = vde / lines; 2881 ; res : 00 200 lines, 01 350 lines, 02 400 lines
|
/xen-4.10.0-shim-comet/stubdom/grub.patches/ |
A D | 10graphics.diff | 699 if (lines) 700 max_lines = lines; 732 - "terminal [--dumb] [--no-echo] [--no-edit] [--timeout=SECS] [--lines=LINES] [--silent] [console]… 733 + "terminal [--dumb] [--no-echo] [--no-edit] [--timeout=SECS] [--lines=LINES] [--silent] [console]… 738 " seconds. The option --lines specifies the maximum number of lines." 871 + 30, /* number of lines */ 1064 + /* Restart to count lines. */ 1108 - /* Restart to count lines. */ 2257 + /* Default for maximum number of lines if not specified */
|
/xen-4.10.0-shim-comet/tools/xl/ |
A D | CODING_STYLE | 102 Do not leave whitespace dangling off the ends of lines. 201 ambiguity and avoids needless churn when lines are added or removed.
|
/xen-4.10.0-shim-comet/tools/libxl/ |
A D | CODING_STYLE | 218 Do not leave whitespace dangling off the ends of lines. 326 ambiguity and avoids needless churn when lines are added or removed.
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | kconfig-language.txt | 38 arguments. "config" starts a new config entry. The following lines
|