/busybox-1.35.0/scripts/kconfig/lxdialog/ |
D | Makefile | 4 check-lxdialog := $(srctree)/$(src)/check-lxdialog.sh 8 HOST_EXTRACFLAGS = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) 9 HOST_LOADLIBES = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC)) 15 $(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOST_LOADLIBES)
|
D | check-lxdialog.sh | 47 check() { function 77 check
|
/busybox-1.35.0/shell/ash_test/ash-heredoc/ |
D | heredoc.tests | 1 # check order and content of multiple here docs 23 # check quoted here-doc is protected 32 # check that quoted here-documents don't have \newline processing done 42 # check that \newline is removed at start of here-doc 48 #ash# # check that \newline removal works for here-doc delimiter 54 # check operation of tab removal in here documents 61 # check appending of text to file from here document 89 # check that end of file delimits a here-document
|
/busybox-1.35.0/shell/hush_test/hush-heredoc/ |
D | heredoc.tests | 1 # check order and content of multiple here docs 23 # check quoted here-doc is protected 32 # check that quoted here-documents don't have \newline processing done 42 # check that \newline is removed at start of here-doc 48 # check that \newline removal works for here-doc delimiter 54 # check operation of tab removal in here documents 61 # check appending of text to file from here document 92 #hush# # check that end of file delimits a here-document
|
/busybox-1.35.0/shell/ash_test/ash-vars/ |
D | unset.tests | 1 # check invalid options are rejected 8 # check funky usage 12 # check normal usage 31 # check read only vars
|
D | var5.tests | 1 # check that first assignment has proper effect on second one
|
/busybox-1.35.0/shell/hush_test/hush-vars/ |
D | unset.tests | 3 # check invalid options are rejected 10 # check funky usage 14 # check normal usage 33 # check read only vars
|
D | var5.tests | 1 # check that first assignment has proper effect on second one
|
/busybox-1.35.0/shell/hush_test/hush-arith/ |
D | arith.right | 56 check that parentheses in `cmd` are interpreted correctly 58 check that the unevaluated part of the ternary operator does not do evaluation or assignment 63 check precedence of assignment vs. conditional operator 65 check precedence of assignment vs. conditional operator
|
D | arith.tests | 90 echo 'check that parentheses in `cmd` are interpreted correctly' 94 echo check that the unevaluated part of the ternary operator does not do evaluation or assignment 115 echo check precedence of assignment vs. conditional operator 122 echo check precedence of assignment vs. conditional operator
|
/busybox-1.35.0/editors/ |
D | patch.c | 212 struct double_list *plist, *buf = NULL, *check; in apply_one_hunk() local 276 check = dlist_add(&buf, data); in apply_one_hunk() 290 if (strcmp(check->data, plist->data+1) == 0 in apply_one_hunk() 301 if (!plist || strcmp(check->data, plist->data+1)) { in apply_one_hunk() 309 check = buf; in apply_one_hunk() 311 check->prev->next = buf; in apply_one_hunk() 312 buf->prev = check->prev; in apply_one_hunk() 313 do_line(check); in apply_one_hunk() 318 if (check == buf) { in apply_one_hunk() 322 check = buf; in apply_one_hunk() [all …]
|
D | patch_toybox.c | 309 struct double_list *plist, *buf = NULL, *check; in apply_one_hunk() local 359 check = dlist_add(&buf, data); in apply_one_hunk() 372 if (!plist || strcmp(check->data, plist->data+1)) { in apply_one_hunk() 380 check = TOY_llist_pop(&buf); in apply_one_hunk() 381 check->prev->next = buf; in apply_one_hunk() 382 buf->prev = check->prev; in apply_one_hunk() 383 do_line(check); in apply_one_hunk() 388 if (check==buf) { in apply_one_hunk() 392 check = buf; in apply_one_hunk() 399 check = check->next; in apply_one_hunk() [all …]
|
/busybox-1.35.0/testsuite/ |
D | bzcat.tests | 45 check() { function 62 check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok"
|
D | bunzip2.tests | 490 check() { function 508 prep; check "$unpack: doesnt exist" "${bb}$unpack z t1.$ext; echo \$?; cat t1" 515 prep; >t.zz; check "$unpack: unknown suffix" "${bb}$unpack t.zz t1.$ext; echo \$?; cat t1" 523 prep; >t1; check "$unpack: already exists" "${bb}$unpack t1.$ext t2.$ext; echo \$?; cat t1 t2" 528 prep; check "$unpack: stream unpack" "cat t1.$ext | ${bb}$unpack; echo \$?" 531 prep; check "$unpack: delete src" "${bb}$unpack t2.$ext; test ! -f t2.$ext && echo ok"
|
/busybox-1.35.0/shell/ash_test/ash-arith/ |
D | arith.right | 56 check that the unevaluated part of the ternary operator does not do evaluation or assignment 61 check precedence of assignment vs. conditional operator 63 check precedence of assignment vs. conditional operator
|
D | arith.tests | 90 echo check that the unevaluated part of the ternary operator does not do evaluation or assignment 111 echo check precedence of assignment vs. conditional operator 118 echo check precedence of assignment vs. conditional operator
|
/busybox-1.35.0/scripts/ |
D | Kbuild.include | 21 # filechk is used to check if the content of a generated file is updated. 118 # User may override this check using make KBUILD_NOCMDDEP=1 119 arg-check = $(strip $(filter-out $(1), $(2)) $(filter-out $(2), $(1)) ) 133 $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ 142 $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ 150 # will check if $(cmd_foo) changed, or any of the prequisites changed, 153 $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ),\
|
/busybox-1.35.0/shell/hush_test/hush-signals/ |
D | return_in_trap1.tests | 17 # or does it first check pending signals and runs handler?
|
D | subshell.tests | 11 # With TERM we'll check whether it is reset
|
/busybox-1.35.0/shell/ash_test/ash-signals/ |
D | return_in_trap1.tests | 17 # or does it first check pending signals and runs handler?
|
D | subshell.tests | 11 # With TERM we'll check whether it is reset
|
/busybox-1.35.0/debianutils/ |
D | start_stop_daemon.c | 257 static void check(int pid) in check() function 284 check(pid); in do_pidfile() 316 check(pid); in do_procinit()
|
/busybox-1.35.0/networking/udhcp/ |
D | dhcpc.c | 886 uint16_t check; in d4_recv_raw_packet() local 941 check = packet.ip.check; in d4_recv_raw_packet() 942 packet.ip.check = 0; in d4_recv_raw_packet() 943 if (check != inet_cksum(&packet.ip, sizeof(packet.ip))) { in d4_recv_raw_packet() 966 check = packet.udp.check; in d4_recv_raw_packet() 967 packet.udp.check = 0; in d4_recv_raw_packet() 968 if (check && check != inet_cksum(&packet, bytes)) { in d4_recv_raw_packet()
|
D | packet.c | 168 packet.udp.check = inet_cksum(&packet, in udhcp_send_raw_packet() 175 packet.ip.check = inet_cksum(&packet.ip, sizeof(packet.ip)); in udhcp_send_raw_packet()
|
/busybox-1.35.0/e2fsprogs/ |
D | Config.src | 14 ### e2fsck is used to check Linux second extended file systems (ext2fs).
|