Home
last modified time | relevance | path

Searched refs:cond (Results 1 – 6 of 6) sorted by relevance

/busybox-1.35.0/shell/hush_test/hush-misc/
Dbreak4.tests1 cond=true
2 while $cond; do
4 if test "$cond" = true; then
5 cond='echo TRUE'
7 cond=false
/busybox-1.35.0/shell/ash_test/ash-misc/
Dbreak4.tests1 cond=true
2 while $cond; do
4 if test "$cond" = true; then
5 cond='echo TRUE'
7 cond=false
/busybox-1.35.0/archival/libarchive/bz/
Dbzlib_private.h37 #define AssertH(cond, errcode) \ argument
39 if (!(cond)) \
43 #define AssertH(cond, msg) do { } while (0) argument
47 #define AssertD(cond, msg) \ argument
49 if (!(cond)) \
53 #define AssertD(cond, msg) do { } while (0) argument
/busybox-1.35.0/miscutils/
Dbc.c5818 ssize_t cond; in zxc_program_logical() local
5826 cond = bc_num_cmp(n1, &G.prog.zero) && bc_num_cmp(n2, &G.prog.zero); in zxc_program_logical()
5828 cond = bc_num_cmp(n1, &G.prog.zero) || bc_num_cmp(n2, &G.prog.zero); in zxc_program_logical()
5830 cond = bc_num_cmp(n1, n2); in zxc_program_logical()
5833 cond = (cond == 0); in zxc_program_logical()
5836 cond = (cond <= 0); in zxc_program_logical()
5839 cond = (cond >= 0); in zxc_program_logical()
5842 cond = (cond < 0); in zxc_program_logical()
5845 cond = (cond > 0); in zxc_program_logical()
5853 if (cond) bc_num_one(&res.d.n); in zxc_program_logical()
[all …]
/busybox-1.35.0/archival/
Dgzip.c104 # define Assert(cond,msg) { if (!(cond)) bb_simple_error_msg(msg); } argument
111 # define Assert(cond,msg) argument
/busybox-1.35.0/shell/
Dash.c299 # define unlikely(cond) (cond) argument
1414 ash_vmsg_and_raise(int cond, const char *msg, va_list ap) in ash_vmsg_and_raise() argument
1418 TRACE(("ash_vmsg_and_raise(%d):", cond)); in ash_vmsg_and_raise()
1421 TRACE(("ash_vmsg_and_raise(%d):NULL\n", cond)); in ash_vmsg_and_raise()
1427 raise_exception(cond); in ash_vmsg_and_raise()
1461 ash_msg_and_raise(int cond, const char *msg, ...) in ash_msg_and_raise() argument
1466 ash_vmsg_and_raise(cond, msg, ap); in ash_msg_and_raise()