/busybox-1.35.0/scripts/kconfig/ |
D | zconf.l | 26 static char *text; variable 43 text = malloc(START_STRSIZE); in new_string() 46 *text = 0; in new_string() 59 text = realloc(text, new_size); in append_string() 62 memcpy(text + text_size, str, size); in append_string() 64 text[text_size] = 0; in append_string() 69 text = malloc(size + 1); in alloc_string() 70 memcpy(text, str, size); in alloc_string() 71 text[size] = 0; in alloc_string() 111 zconflval.string = text; [all …]
|
D | kxgettext.c | 13 static char *escape(const char* text, char *bf, int len) in escape() argument 16 int multiline = strchr(text, '\n') != NULL; in escape() 18 int textlen = strlen(text); in escape() 20 if ((textlen > 0) && (text[textlen-1] == '\n')) in escape() 33 while (*text != '\0' && len > 1) { in escape() 34 if (*text == '"') in escape() 36 else if (*text == '\n') { in escape() 43 ++text; in escape() 46 *bfp++ = *text++; in escape()
|
D | lkc.h | 37 #define _(text) gettext(text) argument 38 #define N_(text) (text) argument
|
D | qconf.h | 183 void setText(colIdx idx, const QString& text) in setText() argument 185 Parent::setText(listView()->mapIdx(idx), text); in setText() 187 QString text(colIdx idx) const in text() function 189 return Parent::text(listView()->mapIdx(idx)); in text()
|
D | mconf.c | 285 static void show_textbox(const char *title, const char *text, int r, int c); 286 static void show_helptext(const char *title, const char *text); 383 str_printf(r, "Prompt: %s\n", prop->text); in get_prompt_str() 847 static void show_textbox(const char *title, const char *text, int r, int c) in show_textbox() argument 850 int len = strlen(text); in show_textbox() 853 if (write(fd, text, len) != len) in show_textbox() 860 static void show_helptext(const char *title, const char *text) in show_helptext() argument 862 show_textbox(title, text, 0, 0); in show_helptext()
|
D | expr.h | 110 const char *text; member 125 if (st->text)
|
D | lex.zconf.c_shipped | 228 /* When an EOF's been seen but there's still some text to process 761 static char *text; 778 text = malloc(START_STRSIZE); 781 *text = 0; 795 text = realloc(text, new_size); 798 memcpy(text + text_size, str, size); 800 text[text_size] = 0; 805 text = malloc(size + 1); 806 memcpy(text, str, size); 807 text[size] = 0; [all …]
|
D | menu.c | 127 prop->text = prompt; in menu_add_prop() 314 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize() 375 return _(menu->prompt->text); in menu_get_prompt()
|
D | zconf.y | 597 print_quoted_string(out, prop->text); in print_symbol() 644 print_quoted_string(out, prop->text); in zconfdump() 649 print_quoted_string(out, prop->text); in zconfdump()
|
D | conf.c | 219 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string() 251 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
|
D | qconf.cc | 170 sym_set_string_value(menu->sym, text(dataColIdx).latin1()); in okRename() 376 sym_set_string_value(item->menu->sym, text().latin1()); in keyPressEvent() 402 disabledColorGroup.setColor(QColorGroup::Text, palette().disabled().text()); in ConfigList() 1038 head += print_filter(_(menu->prompt->text)); in setHelp() 1068 debug += print_filter(_(prop->text)); in setHelp() 1110 head += print_filter(_(menu->prompt->text)); in setHelp()
|
/busybox-1.35.0/testsuite/ |
D | md5sum.tests | 28 text="The quick brown fox jumps over the lazy dog" 29 text=`yes "$text" | head -c 9999` 34 echo "$text" | head -c $n | "$sum"
|
/busybox-1.35.0/scripts/ |
D | objsizes | 12 while read text data bss dec hex filename; do 13 t_text=$((t_text+text)) 16 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
|
/busybox-1.35.0/ |
D | size_single_applets.sh | 25 text=`size "$b" | tail -1 | sed -e's/\t/ /g' -e's/^ *//' -e's/ .*//'` 31 test $mintext -gt $text && { 32 mintext=$text 35 eval "text_${app}=$text" 66 sz=$((text-mintext))
|
/busybox-1.35.0/scripts/kconfig/lxdialog/ |
D | textbox.c | 41 WINDOW *dialog, *text; in dialog_textbox() local 86 text = subwin(dialog, height - 4, width - 2, y + 1, x + 1); in dialog_textbox() 87 wattrset(text, dialog_attr); in dialog_textbox() 88 wbkgdset(text, dialog_attr & A_COLOR); in dialog_textbox() 90 keypad(text, TRUE); in dialog_textbox() 110 attr_clear(text, height - 4, width - 2, dialog_attr); in dialog_textbox() 111 print_page(text, height - 4, width - 2); in dialog_textbox() 153 print_page(text, height - 4, width - 2); in dialog_textbox() 185 print_page(text, height - 4, width - 2); in dialog_textbox() 201 scrollok(text, TRUE); in dialog_textbox() [all …]
|
/busybox-1.35.0/mailutils/ |
D | mail.c | 128 static void encode_n_base64(const char *fname, const char *text, size_t len) in encode_n_base64() argument 134 #define src_buf text in encode_n_base64() 172 void FAST_FUNC printstr_base64(const char *text) in printstr_base64() argument 174 encode_n_base64(NULL, text, strlen(text)); in printstr_base64() 177 void FAST_FUNC printbuf_base64(const char *text, unsigned len) in printbuf_base64() argument 179 encode_n_base64(NULL, text, len); in printbuf_base64()
|
/busybox-1.35.0/editors/ |
D | vi.c | 294 char *text, *end; // pointers to the user data in memory member 464 #define text (G.text ) macro 686 if (p > text) { in begin_line() 687 p = memrchr(text, '\n', p - text); in begin_line() 689 return text; in begin_line() 717 if (p > text && p[-1] == '\n') in prev_line() 771 for (q = text; li > 1; li--) { in find_line() 1263 cur = count_lines(text, dot); in format_edit_status() 1456 if (text <= mark[27] && mark[27] <= end - 1) { in swap_context() 1495 if (end >= (text + text_size)) { in text_hole_make() [all …]
|
/busybox-1.35.0/networking/ |
D | inetd.c | 1635 char text[LINESIZ + 2]; in chargen_stream() local 1642 text[LINESIZ] = '\r'; in chargen_stream() 1643 text[LINESIZ + 1] = '\n'; in chargen_stream() 1648 memmove(text, rs, LINESIZ); in chargen_stream() 1650 memmove(text, rs, len); in chargen_stream() 1651 memmove(text + len, ring, LINESIZ - len); in chargen_stream() 1655 xwrite(s, text, sizeof(text)); in chargen_stream() 1662 char text[LINESIZ + 2]; in chargen_dg() local 1668 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0) in chargen_dg() 1678 memmove(text, ring_pos, LINESIZ); in chargen_dg() [all …]
|
/busybox-1.35.0/miscutils/ |
D | hexedit.c | 77 char *text; in format_line() local 91 text = hex + 16 * 3; in format_line() 104 *text++ = c; in format_line() 111 *text++ = ' '; in format_line() 114 *text = '\0'; in format_line()
|
/busybox-1.35.0/procps/ |
D | ps.posix | 88 appending an equals sign and the new text of the header. The rest of 89 the characters in the argument shall be used as the header text. The 93 text (default or overridden value). If the header text is null, such as 95 header text. If all header text fields are null, no header line shall 171 There is no special quoting mechanism for header text. The header text
|
/busybox-1.35.0/shell/ |
D | ash.c | 563 char *text; member 945 char *text; member 952 char *text; member 1200 for (p = arg->narg.text; *p; p++) { in sharg() 2073 const char *text; /* saved text */ member 2559 if (strcmp(lp1->text, vp->var_text) == 0) in listvars() 2578 *ep++ = lp->text; in listvars() 5049 cmdputs(n->ndefun.text); in cmdtxt() 5057 p = n->narg.text; in cmdtxt() 5067 cmdputs(n->ncase.expr->narg.text); in cmdtxt() [all …]
|
/busybox-1.35.0/docs/ |
D | Kconfig-language.txt | 40 the config option, input prompt, dependencies, help text and default 93 - help text: "help" 94 This defines a help text. The end of the help text is determined by 96 a smaller indentation than the first line of the help text.
|
/busybox-1.35.0/shell/ash_test/ash-heredoc/ |
D | heredoc.tests | 61 # check appending of text to file from here document
|
/busybox-1.35.0/shell/hush_test/hush-heredoc/ |
D | heredoc.tests | 61 # check appending of text to file from here document
|
/busybox-1.35.0/testsuite/date/ |
D | date-works-1 | 132 # This should error out (by showing usage text). Testing for that
|