/busybox-1.35.0/shell/ |
D | hush_leaktool.sh | 4 output=output 6 freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs` 8 grep -v free "$output" >"$output.leaked" 16 grep -F -v $list <"$output.leaked" >"$output.temp" 17 mv "$output.temp" "$output.leaked" 23 grep -F -v $list <"$output.leaked" >"$output.temp" 24 mv "$output.temp" "$output.leaked"
|
D | brace.txt | 44 when they appear as part of a word, and preserves them in the output. 47 the output. The same word is output as file1 file2 after expansion by
|
D | hush.c | 6029 static int expand_vars_to_list(o_string *output, int n, char *arg); 6077 static int expand_on_ifs(o_string *output, int n, const char *str) in expand_on_ifs() argument 6089 if (!(output->o_expflags & EXP_FLAG_GLOB)) { in expand_on_ifs() 6090 o_addblock(output, str, word_len); in expand_on_ifs() 6096 o_addblock_duplicate_backslash(output, str, word_len); in expand_on_ifs() 6125 if (output->has_quoted_part in expand_on_ifs() 6135 || output->data[output->length - 1] in expand_on_ifs() 6138 o_addchr(output, '\0'); in expand_on_ifs() 6139 debug_print_list("expand_on_ifs", output, n); in expand_on_ifs() 6140 n = o_save_ptr(output, n); in expand_on_ifs() [all …]
|
D | ash_remove_unnecessary_code_in_backquote_expansion.patch | 65 - * want to save its output in a block obtained from malloc. Otherwise 66 - * we fork off a subprocess and get the output of the command via a pipe. 69 + * get the output of the command via a pipe. Should be called with
|
/busybox-1.35.0/coreutils/ |
D | uniq.c | 72 const char *output; in uniq_main() local 78 output = argv[1]; in uniq_main() 79 if (output) { in uniq_main() 82 if (output[0] != '-' || output[1]) { in uniq_main() 86 xmove_fd(xopen(output, O_WRONLY | O_CREAT | O_TRUNC), STDOUT_FILENO); in uniq_main()
|
D | stty.c | 256 control, input, output, local, combination enumerator 392 MI_ENTRY("opost", output, SANE_SET | REV, OPOST, 0 ) 394 MI_ENTRY("olcuc", output, SANE_UNSET | REV, OLCUC, 0 ) 397 MI_ENTRY("ocrnl", output, SANE_UNSET | REV, OCRNL, 0 ) 400 MI_ENTRY("onlcr", output, SANE_SET | REV, ONLCR, 0 ) 403 MI_ENTRY("onocr", output, SANE_UNSET | REV, ONOCR, 0 ) 406 MI_ENTRY("onlret", output, SANE_UNSET | REV, ONLRET, 0 ) 409 MI_ENTRY("ofill", output, SANE_UNSET | REV, OFILL, 0 ) 412 MI_ENTRY("ofdel", output, SANE_UNSET | REV, OFDEL, 0 ) 415 MI_ENTRY("nl1", output, SANE_UNSET, NL1, NLDLY) [all …]
|
D | Config.src | 43 bool "Support human readable output (example 13k, 23M, 235G)" 47 Allow df, du, and ls to have human readable output.
|
/busybox-1.35.0/testsuite/bunzip2/ |
D | bunzip2-reads-from-standard-input | 1 echo foo | bzip2 | busybox bunzip2 > output 2 echo foo | cmp - output
|
/busybox-1.35.0/testsuite/gunzip/ |
D | gunzip-reads-from-standard-input | 1 echo foo | gzip | busybox gunzip > output 2 echo foo | cmp - output
|
/busybox-1.35.0/examples/ |
D | depmod.pl | 125 my @output=`$nm $obj`; 127 build_ref_tables($tgtname, \@output, $exp, $dep); 133 my @output = $kernelsyms ? `cat $kernelsyms` : `$nm $kernel`; 135 build_ref_tables($tgtname, \@output, $exp, $dep);
|
/busybox-1.35.0/testsuite/ |
D | ash.tests | 81 rm ash.output
|
/busybox-1.35.0/shell/ash_test/ash-signals/ |
D | usage.tests | 1 # no output -- default state
|
/busybox-1.35.0/shell/hush_test/hush-signals/ |
D | usage.tests | 1 # no output -- default state
|
/busybox-1.35.0/libbb/ |
D | pw_encrypt_des.c | 714 des_crypt(struct des_ctx *ctx, char output[DES_OUT_BUFSIZE], in des_crypt() 741 output[0] = salt_str[0]; in des_crypt() 742 output[1] = salt_str[1]; in des_crypt() 754 q = (uint8_t *)output + 2; in des_crypt() 773 to64_msb_first(output + 2, (r0 >> 8)); in des_crypt() 775 to64_msb_first(output + 6, (r0 << 16) | (r1 >> 16)); in des_crypt() 777 to64_msb_first(output + 10, (r1 << 8)); in des_crypt() 779 output[13] = '\0'; in des_crypt() 782 return output; in des_crypt()
|
D | hash_md5prime.c | 93 memcpy32_cpu2le(unsigned char *output, uint32_t *input, unsigned len) in memcpy32_cpu2le() argument 97 output[j] = input[i]; in memcpy32_cpu2le() 98 output[j+1] = (input[i] >> 8); in memcpy32_cpu2le() 99 output[j+2] = (input[i] >> 16); in memcpy32_cpu2le() 100 output[j+3] = (input[i] >> 24); in memcpy32_cpu2le() 106 memcpy32_le2cpu(uint32_t *output, const unsigned char *input, unsigned len) in memcpy32_le2cpu() argument 110 output[i] = ((uint32_t)input[j]) in memcpy32_le2cpu()
|
/busybox-1.35.0/docs/ |
D | unicode.txt | 14 * It is unreasonable to expect that output device supports 16 those chars which are not supported by output device. 54 ls will fail to line up columnar output if it will not account
|
/busybox-1.35.0/networking/ |
D | telnetd.ctrlSQ.patch | 19 which quotes IACs on output. 26 TIOCSTOP Stops output to a terminal (e.g. like typing ^S). Takes no parameter. 28 TIOCSTART Restarts output (stopped by TIOCSTOP or by typing ^S). Takes no parameter. 37 TIOCPKT_STOP whenever output to the terminal is stopped a la ^S. 38 TIOCPKT_START whenever output to the terminal is restarted. 46 with proper back-flushing of output; it can be used by other similar programs.
|
/busybox-1.35.0/shell/hush_test/hush-glob/ |
D | glob2.tests | 12 echo 'Z\* :' Z\\\* # NB! only this matches Z$v output
|
/busybox-1.35.0/shell/ash_test/ash-glob/ |
D | glob2.tests | 12 echo 'Z\* :' Z\\\* # NB! only this matches Z$v output
|
/busybox-1.35.0/scripts/kconfig/ |
D | Makefile | 47 --output scripts/kconfig/config.pot 56 --output scripts/kconfig/linux_raw.pot 58 --output scripts/kconfig/linux.pot
|
/busybox-1.35.0/shell/hush_test/hush-parsing/ |
D | and_or_and_backgrounding.tests | 17 #commands write solely bar to standard output:
|
/busybox-1.35.0/shell/ash_test/ash-parsing/ |
D | and_or_and_backgrounding.tests | 17 #commands write solely bar to standard output:
|
/busybox-1.35.0/examples/var_service/ |
D | README_distro_proposal.txt | 130 the output of another service. It is implemented as log/ subdirectory 192 Daemons' output file descriptors are handled somewhat awkwardly 196 (which is visible in ps output). 204 An especially primitive service which does not want its output to be logged 286 Standard output of non-logged services goes to standard output of service monitor. 287 Standard output of logger services goes to standard output of service monitor.
|
/busybox-1.35.0/shell/ash_test/ash-z_slow/ |
D | many_ifs.tests | 5 # Each failed test produces one line on the standard output that 7 # The last output line contains the test result counts. ordered>0 10 # IFS=" :" then the second output line is suppressed.
|
/busybox-1.35.0/shell/hush_test/hush-z_slow/ |
D | many_ifs.tests | 5 # Each failed test produces one line on the standard output that 7 # The last output line contains the test result counts. ordered>0 10 # IFS=" :" then the second output line is suppressed.
|