| /scripts/gdb/linux/ |
| D | timerlist.py | 38 text = " #{}: <{}>, {}, ".format(idx, timer, function) 39 text += "S:{:02x}\n".format(int(timer['state'])) 40 text += " # expires at {}-{} nsecs [in {} to {} nsecs]\n".format( 42 return text 55 text = " .base: {}\n".format(base.address) 56 text += " .index: {}\n".format(base['index']) 58 text += " .resolution: {} nsecs\n".format(constants.LX_hrtimer_resolution) 60 text += " .get_time: {}\n".format(base['get_time']) 62 text += " .offset: {} nsecs\n".format(base['offset']) 63 text += "active timers:\n" [all …]
|
| D | interrupts.py | 24 text = "" 28 return text 32 return text 35 return text 43 return text; 45 text += "%*d: " % (prec, irq) 51 text += "%10u" % (count) 61 text += " %8s" % (name) 64 text += " %*lu" % (prec, desc['irq_data']['hwirq']) 66 text += " %*s" % (prec, "") [all …]
|
| D | dmesg.py | 116 text = "" 133 text = text_data[0:text_len].decode(encoding='utf8', errors='replace') 137 for line in text.splitlines():
|
| D | modules.py | 76 text = module['mem'][constants.LX_MOD_TEXT] 77 text_addr = str(text['base']).split()[0]
|
| /scripts/kconfig/ |
| D | lexer.l | 37 static char *text; variable 59 text = xmalloc(START_STRSIZE); in new_string() 62 *text = 0; in new_string() 71 text = xrealloc(text, new_size); in append_string() 74 memcpy(text + text_size, str, size); in append_string() 76 text[text_size] = 0; in append_string() 81 text = xmalloc(size + 1); in alloc_string() 82 memcpy(text, str, size); in alloc_string() 83 text[size] = 0; in alloc_string() 151 yylval.string = text; [all …]
|
| D | nconf.h | 75 int get_line_no(const char *text); 76 const char *get_line(const char *text, int line_no); 77 void fill_window(WINDOW *win, const char *text); 83 int show_scroll_win_ext(WINDOW *main_window, const char *title, char *text, 88 const char *text);
|
| D | nconf.gui.c | 127 int get_line_no(const char *text) in get_line_no() argument 132 if (!text) in get_line_no() 135 for (i = 0; text[i] != '\0'; i++) in get_line_no() 136 if (text[i] == '\n') in get_line_no() 141 const char *get_line(const char *text, int line_no) in get_line() argument 146 if (!text) in get_line() 149 for (i = 0; text[i] != '\0' && lines < line_no; i++) in get_line() 150 if (text[i] == '\n') in get_line() 152 return text+i; in get_line() 166 void fill_window(WINDOW *win, const char *text) in fill_window() argument [all …]
|
| D | mconf.c | 301 config_filename, rootmenu.prompt->text); in set_config_filename() 309 const char *text; member 326 if (sp->text) { in set_subtitle() 333 pos->text = sp->text; in set_subtitle() 352 static int show_textbox_ext(const char *title, const char *text, int r, int c, in show_textbox_ext() argument 358 return dialog_textbox(title, text, r, c, vscroll, hscroll, in show_textbox_ext() 362 static void show_textbox(const char *title, const char *text, int r, int c) in show_textbox() argument 364 show_textbox_ext(title, text, r, c, NULL, NULL, NULL, NULL); in show_textbox() 367 static void show_helptext(const char *title, const char *text) in show_helptext() argument 369 show_textbox(title, text, 0, 0); in show_helptext() [all …]
|
| D | expr.h | 190 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member 206 if (st->text)
|
| D | parser.y | 681 print_quoted_string(out, prop->text); in print_symbol() 714 print_quoted_string(out, prop->text); in print_symbol() 744 print_quoted_string(out, prop->text); in zconfdump() 749 print_quoted_string(out, prop->text); in zconfdump()
|
| D | menu.c | 205 prop->text = prompt; in menu_add_prompt() 484 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in _menu_finalize() 571 return menu->prompt->text; in menu_get_prompt() 617 str_printf(r, " Prompt: %s\n", prop->text); in get_prompt_str()
|
| /scripts/ |
| D | module.lds.S | 92 .text : { 93 *(.text.._start) 94 *(.text .text.[0-9a-zA-Z_]*) 95 *(.text.._end) 96 *(.text.._fips140_unchecked)
|
| D | recordmcount.pl | 452 my $text; 500 $text = $2; 505 if (!defined($locals{$text}) && !defined($weak{$text})) { 506 $ref_func = $text; 511 if (!defined($ref_func) && !defined($weak{$text}) && 514 $text !~ /^\.L/) { 515 $ref_func = $text;
|
| D | cleanpatch | 163 $text = substr($line, 1); 164 $text =~ s/[ \t\r]*$//; # Remove trailing spaces 165 $text = clean_space_tabs($text); 167 $l_width = strwidth($text); 174 push(@hunk_lines, '+'.$text);
|
| D | bootgraph.pl | 31 my $text = << "EOM"; 41 print STDERR $text; 43 print $text;
|
| D | makelst | 20 t1=`$3 --syms $1 | grep .text | grep -m1 " F "`
|
| D | head-object-list.txt | 8 # The code marked as __HEAD goes into the ".head.text" section, which is placed 9 # before the normal ".text" section.
|
| D | check_extable.sh | 13 white_list=.text,.fixup
|
| /scripts/package/debian/ |
| D | copyright | 15 On Debian GNU/Linux systems, the complete text of the GNU General Public
|
| /scripts/dtc/ |
| D | srcpos.h | 87 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
|
| D | srcpos.c | 234 void srcpos_update(struct srcpos *pos, const char *text, int len) in srcpos_update() argument 244 if (text[i] == '\n') { in srcpos_update()
|
| /scripts/kconfig/tests/preprocess/escape/ |
| D | Kconfig | 12 # The following prints the text as-is.
|
| /scripts/kconfig/lxdialog/ |
| D | util.c | 233 len += strlen(pos->text) + 3; in dialog_clear() 254 if (skip < strlen(pos->text)) { in dialog_clear() 255 waddstr(stdscr, pos->text + skip); in dialog_clear() 258 skip -= strlen(pos->text); in dialog_clear()
|
| D | dialog.h | 76 const char *text; member
|
| /scripts/coccinelle/free/ |
| D | devm_free.cocci | 12 /// Here this is done using the specific argument text, which is prone to
|