/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 56 text = " .base: {}\n".format(base.address) 57 text += " .index: {}\n".format(base['index']) 59 text += " .resolution: {} nsecs\n".format(constants.LX_hrtimer_resolution) 61 text += " .get_time: {}\n".format(base['get_time']) 63 text += " .offset: {} nsecs\n".format(base['offset']) 64 text += "active timers:\n" [all …]
|
D | dmesg.py | 116 text = "" 133 text = text_data[0:text_len].decode(encoding='utf8', errors='replace') 137 for line in text.splitlines():
|
/scripts/kconfig/ |
D | lexer.l | 30 static char *text; variable 49 text = xmalloc(START_STRSIZE); in new_string() 52 *text = 0; in new_string() 61 text = xrealloc(text, new_size); in append_string() 64 memcpy(text + text_size, str, size); in append_string() 66 text[text_size] = 0; in append_string() 71 text = xmalloc(size + 1); in alloc_string() 72 memcpy(text, str, size); in alloc_string() 73 text[size] = 0; in alloc_string() 143 yylval.string = text; [all …]
|
D | nconf.h | 73 int get_line_no(const char *text); 74 const char *get_line(const char *text, int line_no); 75 void fill_window(WINDOW *win, const char *text); 83 const char *text);
|
D | mconf.c | 291 static int show_textbox_ext(const char *title, char *text, int r, int c, 294 static void show_textbox(const char *title, const char *text, int r, int c); 295 static void show_helptext(const char *title, const char *text); 304 config_filename, rootmenu.prompt->text); in set_config_filename() 312 const char *text; member 329 if (sp->text) { in set_subtitle() 336 pos->text = sp->text; in set_subtitle() 426 stpart.text = str_get(&sttext); in search_conf() 651 stpart.text = menu_get_prompt(menu); in conf() 653 stpart.text = NULL; in conf() [all …]
|
D | nconf.gui.c | 126 int get_line_no(const char *text) in get_line_no() argument 131 if (!text) in get_line_no() 134 for (i = 0; text[i] != '\0'; i++) in get_line_no() 135 if (text[i] == '\n') in get_line_no() 140 const char *get_line(const char *text, int line_no) in get_line() argument 145 if (!text) in get_line() 148 for (i = 0; text[i] != '\0' && lines < line_no; i++) in get_line() 149 if (text[i] == '\n') in get_line() 151 return text+i; in get_line() 165 void fill_window(WINDOW *win, const char *text) in fill_window() argument [all …]
|
D | expr.h | 192 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member 209 if (st->text)
|
D | parser.y | 615 print_quoted_string(out, prop->text); in print_symbol() 651 print_quoted_string(out, prop->text); in print_symbol() 685 print_quoted_string(out, prop->text); in zconfdump() 690 print_quoted_string(out, prop->text); in zconfdump()
|
D | menu.c | 194 prop->text = prompt; in menu_add_prompt() 554 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize() 658 return menu->prompt->text; in menu_get_prompt() 716 str_printf(r, " Prompt: %s\n", prop->text); in get_prompt_str()
|
D | qconf.cc | 285 success = sym_set_string_value(sym, lineEdit->text().toUtf8().data()); in setModelData() 1017 stream << print_filter(_menu->prompt->text); in menuInfo() 1049 stream << print_filter(_menu->prompt->text); in menuInfo() 1087 stream << print_filter(prop->text); in debug_info() 1304 result = sym_re_search(editField->text().toLatin1()); in search() 1327 rootmenu.prompt->text, in ConfigMainWindow()
|
D | conf.c | 358 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string() 391 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
|
/scripts/ |
D | module.lds.S | 98 .text : ALIGN_CFI { 99 *(.text.._start) 100 *(.text.__cfi_check) 101 *(.text .text.[0-9a-zA-Z_]* .text..L.cfi*) 102 *(.text.._end) 103 *(.text.._fips140_unchecked)
|
D | recordmcount.pl | 462 my $text; 510 $text = $2; 515 if (!defined($locals{$text}) && !defined($weak{$text})) { 516 $ref_func = $text; 521 if (!defined($ref_func) && !defined($weak{$text}) && 524 $text !~ /^\.L/) { 525 $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 | check_extable.sh | 13 white_list=.text,.fixup
|
D | unifdef.c | 175 static bool text; /* -t: this is a text file */ variable 304 text = true; in main() 974 if (text || ignoring[depth]) { in skipcomment()
|
/scripts/dtc/ |
D | srcpos.h | 87 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
|
D | srcpos.c | 232 void srcpos_update(struct srcpos *pos, const char *text, int len) in srcpos_update() argument 242 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 | 260 len += strlen(pos->text) + 3; in dialog_clear() 281 if (skip < strlen(pos->text)) { in dialog_clear() 282 waddstr(stdscr, pos->text + skip); in dialog_clear() 285 skip -= strlen(pos->text); in dialog_clear()
|
D | dialog.h | 92 const char *text; member
|
/scripts/package/ |
D | mkdebian | 167 On Debian GNU/Linux systems, the complete text of the GNU General Public
|
/scripts/coccinelle/free/ |
D | devm_free.cocci | 12 /// Here this is done using the specific argument text, which is prone to
|