Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 34) sorted by relevance

12

/scripts/gdb/linux/
A Dtimerlist.py42 return text
63 text += "active timers:\n"
65 return text
87 text += "\n"
108 text += "\n"
110 return text
124 return text
148 return text
203 text += "\n"
211 text += "\n"
[all …]
A Dinterrupts.py24 text = ""
28 return text
89 text += "\n"
91 return text
95 text = ""
98 return text
107 return text
115 return text
159 return text
162 text = ""
[all …]
A Ddmesg.py116 text = ""
133 text = text_data[0:text_len].decode(encoding='utf8', errors='replace')
137 for line in text.splitlines():
A Dmodules.py79 text = module['mem'][constants.LX_MOD_TEXT]
80 text_addr = str(text['base']).split()[0]
/scripts/kconfig/
A Dlexer.l37 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 …]
A Dnconf.h75 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);
A Dnconf.gui.c127 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()
146 if (!text) in get_line()
150 if (text[i] == '\n') in get_line()
152 return text+i; in get_line()
513 const char *text) in show_scroll_win() argument
555 fill_window(pad, text); in show_scroll_win_ext()
621 size_t start = (get_line(text, start_y) - text); in show_scroll_win_ext()
[all …]
A Dmconf.c301 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()
358 return dialog_textbox(title, text, r, c, vscroll, hscroll, in show_textbox_ext()
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()
421 stpart.text = str_get(&sttext); in search_conf()
763 stpart.text = menu_get_prompt(menu); in conf()
[all …]
A Dmenu.c206 prop->text = prompt; in menu_add_prompt()
485 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in _menu_finalize()
572 return menu->prompt->text; in menu_get_prompt()
638 str_printf(r, " Prompt: %s\n", prop->text); in get_prompt_str()
819 printf("choice \"%s\"\n", menu->prompt->text); in menu_dump()
822 printf("comment \"%s\"\n", menu->prompt->text); in menu_dump()
828 printf("menu \"%s\"", menu->prompt->text); in menu_dump()
A Dexpr.h190 const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ member
206 if (st->text)
A Dparser.y663 print_quoted_string(out, prop->text); in print_symbol()
696 print_quoted_string(out, prop->text); in print_symbol()
726 print_quoted_string(out, prop->text); in zconfdump()
731 print_quoted_string(out, prop->text); in zconfdump()
/scripts/
A Drecordmcount.pl452 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;
A Dcleanpatch163 $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);
A Dbootgraph.pl31 my $text = << "EOM";
41 print STDERR $text;
43 print $text;
A Dmakelst20 t1=`$3 --syms $1 | grep .text | grep -m1 " F "`
A Dhead-object-list.txt8 # The code marked as __HEAD goes into the ".head.text" section, which is placed
9 # before the normal ".text" section.
A Dcheck_extable.sh13 white_list=.text,.fixup
/scripts/lib/kdoc/
A Dkdoc_output.py339 for section, text in args.sections.items():
352 self.output_highlight(text)
623 for section, text in args.sections.items():
625 self.output_highlight(text)
669 for section, text in args.sections.items():
671 self.output_highlight(text)
699 for section, text in args.sections.items():
701 self.output_highlight(text)
712 for section, text in args.sections.items():
714 self.output_highlight(text)
[all …]
/scripts/package/debian/
A Dcopyright15 On Debian GNU/Linux systems, the complete text of the GNU General Public
/scripts/dtc/
A Dsrcpos.h87 extern void srcpos_update(struct srcpos *pos, const char *text, int len);
A Dsrcpos.c234 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/
A DKconfig12 # The following prints the text as-is.
/scripts/kconfig/lxdialog/
A Dutil.c233 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()
A Ddialog.h76 const char *text; member
/scripts/coccinelle/free/
A Ddevm_free.cocci12 /// Here this is done using the specific argument text, which is prone to

Completed in 854 milliseconds

12