Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 107) sorted by relevance

12345

/busybox-1.35.0/shell/ash_test/ash-vars/
Dvar_expand_in_redir.tests5 echo TEST1 >"$1.out"
6 echo TEST2 >"$2.out"
7 # bash says: "$@.out": ambiguous redirect
9 echo TEST3 >"$@.out"
11 cat abc.out "d e.out" "abc d e.out"
13 rm abc.out "d e.out" "abc d e.out"
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_expand_in_redir.tests5 echo TEST1 >"$1.out"
6 echo TEST2 >"$2.out"
7 # bash says: "$@.out": ambiguous redirect
9 echo TEST3 >"$@.out"
11 cat abc.out "d e.out" "abc d e.out"
13 rm abc.out "d e.out" "abc d e.out"
/busybox-1.35.0/util-linux/
Dmkfs_ext2_test.sh23 >$2.out
32 diff -ua image_bb.out image_std.out >image.out.diff || {
33 cat image.out.diff
37 e2fsck -f -n image_bb >image_bb_e2fsck.out 2>&1 || {
39 cat image_bb_e2fsck.out
/busybox-1.35.0/scripts/kconfig/
Dzconf.y545 void print_quoted_string(FILE *out, const char *str) in print_quoted_string() argument
550 putc('"', out); in print_quoted_string()
554 fprintf(out, "%.*s", len, str); in print_quoted_string()
555 fputs("\\\"", out); in print_quoted_string()
558 fputs(str, out); in print_quoted_string()
559 putc('"', out); in print_quoted_string()
562 void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument
568 fprintf(out, "choice\n"); in print_symbol()
570 fprintf(out, "config %s\n", sym->name); in print_symbol()
573 fputs(" boolean\n", out); in print_symbol()
[all …]
Dutil.c33 FILE *out; in file_write_dep() local
37 out = fopen("..config.tmp", "w"); in file_write_dep()
38 if (!out) in file_write_dep()
40 fprintf(out, "deps_config := \\\n"); in file_write_dep()
43 fprintf(out, "\t%s \\\n", file->name); in file_write_dep()
45 fprintf(out, "\t%s\n", file->name); in file_write_dep()
47 fprintf(out, in file_write_dep()
54 fclose(out); in file_write_dep()
Dkxgettext.c71 goto out; in file_line__new()
76 out: in file_line__new()
94 goto out; in message__new()
106 out: in message__new()
113 goto out; in message__new()
135 goto out; in message__add_file_line()
140 out: in message__add_file_line()
Dconfdata.c333 FILE *out, *out_h; in conf_write() local
371 out = fopen(newname, "w"); in conf_write()
372 if (!out) in conf_write()
397 fprintf(out, _("#\n" in conf_write()
442 fprintf(out, "\n" in conf_write()
469 fprintf(out, "# CONFIG_%s is not set\n", sym->name); in conf_write()
479 fprintf(out, "CONFIG_%s=m\n", sym->name); in conf_write()
484 fprintf(out, "CONFIG_%s=y\n", sym->name); in conf_write()
502 fprintf(out, "CONFIG_%s=\"", sym->name); in conf_write()
508 fwrite(str, l, 1, out); in conf_write()
[all …]
/busybox-1.35.0/coreutils/
Decho.c87 char *out; in echo_main() local
138 out = buffer = xmalloc(buflen + 1); /* +1 is needed for "no args" case */ in echo_main()
145 out = stpcpy(out, arg); in echo_main()
174 *out++ = c; in echo_main()
179 *out++ = ' '; in echo_main()
183 *out++ = '\n'; in echo_main()
189 err = full_write(STDOUT_FILENO, buffer, out - buffer) != out - buffer; in echo_main()
Ddos2unix.c62 FILE *in, *out; in convert() local
68 out = stdout; in convert()
85 out = xfdopen_for_write(fd); in convert()
93 fputc('\r', out); in convert()
94 fputc(ch, out); in convert()
98 if (fclose(in) < 0 || fclose(out) < 0) { in convert()
/busybox-1.35.0/networking/
Dtls_rsa.c14 #define pkcs1Pad(in, inlen, out, outlen, cryptType, userPtr) \ argument
15 pkcs1Pad(in, inlen, out, outlen, cryptType)
17 int32 pkcs1Pad(unsigned char *in, uint32 inlen, unsigned char *out, in pkcs1Pad() argument
28 c = out; in pkcs1Pad()
59 #define psRsaCrypt(pool, in, inlen, out, outlen, key, type, data) \ argument
60 psRsaCrypt( in, inlen, out, outlen, key, type)
63 unsigned char *out, uint32 *outlen, psRsaKey_t *key, int32 type, in psRsaCrypt() argument
156 *out++ = 0x0; in psRsaCrypt()
162 memset(out, 0x0, x); in psRsaCrypt()
164 if (pstm_to_unsigned_bin(pool, &tmp, out+(x-pstm_unsigned_bin_size(&tmp))) in psRsaCrypt()
[all …]
Dtls_rsa.h28 #define psRsaEncryptPub(pool, key, in, inlen, out, outlen, data) \ argument
29 psRsaEncryptPub( key, in, inlen, out, outlen)
32 … unsigned char *out, uint32 outlen, void *data) FAST_FUNC;
/busybox-1.35.0/shell/hush_test/hush-misc/
Dexec.right1 pass fd out open
2 pass fd out dup
3 pass fd out close
Dexec.tests7 echo pass fd out open
12 echo pass fd out dup
16 echo pass fd out close
/busybox-1.35.0/shell/hush_test/hush-redir/
Dredir_children_should_not_see_saved_fd_1.tests4 busybox find /proc/self/fd >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
Dredir_children_should_not_see_saved_fd_2.tests4 { busybox find /proc/self/fd; } >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
Dredir_children_should_not_see_saved_fd_3.tests4 { busybox find /proc/self/fd; true; } >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
/busybox-1.35.0/shell/ash_test/ash-redir/
Dredir_children_should_not_see_saved_fd_1.tests4 busybox find /proc/self/fd >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
Dredir_children_should_not_see_saved_fd_2.tests4 { busybox find /proc/self/fd; } >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
Dredir_children_should_not_see_saved_fd_3.tests4 { busybox find /proc/self/fd; true; } >tmp_$$.out
5 cat tmp_$$.out
6 rm -f tmp_$$.out
/busybox-1.35.0/scripts/
Dtrylink41 printf "%s\n" "Output of:" >$EXE.out
42 printf "%s\n" "$*" >>$EXE.out
43 printf "%s\n" "==========" >>$EXE.out
45 $@ >>$EXE.out 2>&1
146 cat $EXE.out
202 cat $EXE.out
233 cat $EXE.out
269 cat $EXE.out
290 cat $EXE.out
326 cat $EXE.out
[all …]
DMakefile.lib9 obj-m := $(filter-out $(obj-y),$(obj-m))
14 lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m)))
29 obj-m := $(filter-out %/, $(obj-m))
39 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
49 subdir-obj-y := $(foreach o,$(obj-y),$(if $(filter-out $(o),$(notdir $(o))),$(o)))
55 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) …
124 ld_flags = $(filter-out -Wl$(comma)%,$(LDFLAGS) $(EXTRA_LDFLAGS))
158 $(filter-out FORCE,$^) -o $@
/busybox-1.35.0/archival/libarchive/
Dlzo1x_c.c32 uint8_t* out, unsigned* out_len, in do_compress() argument
42 op = out; in do_compress()
84 assert(op - 2 > out); op[-2] |= (uint8_t)(3); in do_compress()
105 assert(op - 2 > out); op[-2] |= (uint8_t)(t); in do_compress()
134 assert(op - 2 > out); in do_compress()
246 *out_len = pd(op, out); in do_compress()
254 uint8_t* out, unsigned* out_len, in DO_COMPRESS() argument
257 uint8_t* op = out; in DO_COMPRESS()
270 if (op == out && t <= 238) in DO_COMPRESS()
294 *out_len = pd(op, out); in DO_COMPRESS()
Dlzo1x_d.c34 uint8_t* out, unsigned* out_len /*, void* wrkmem */) argument
47 uint8_t* const op_end = out + *out_len;
70 op = out;
395 *out_len = pd(op, out);
401 *out_len = pd(op, out);
407 *out_len = pd(op, out);
413 *out_len = pd(op, out);
419 *out_len = pd(op, out);
/busybox-1.35.0/examples/
Dlinux-2.6.30_proc_self_exe.patch12 - goto out;
22 + goto out;
29 + goto out;
/busybox-1.35.0/procps/
Dps.c178 ps_out_t* out; member
192 #define out (G.out ) macro
412 out = xrealloc_vector(out, 2, out_cnt); in new_out_t()
413 return &out[out_cnt++]; in new_out_t()
479 need_flags |= out[i].ps_flags; in alloc_line_buffer()
480 if (out[i].header[0]) { in alloc_line_buffer()
483 width += out[i].width + 1; /* "FIELD " */ in alloc_line_buffer()
510 op = &out[i]; in format_header()
526 out[i].f(p, out[i].width, ps); in format_process()
536 len = out[i].width - len + 1; in format_process()

12345