Searched refs:sep (Results 1 – 10 of 10) sorted by relevance
/busybox-1.35.0/networking/ |
D | inetd.c | 303 #define is_rpc_service(sep) ((sep)->se_rpcver_lo != 0) argument 305 #define is_rpc_service(sep) 0 argument 500 static void register_rpc(servtab_t *sep) in register_rpc() argument 505 if (bb_getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, sizeof(ir_sin)) < 0) { in register_rpc() 511 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) { in register_rpc() 512 pmap_unset(sep->se_rpcprog, n); in register_rpc() 513 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port))) in register_rpc() 515 sep->se_service, sep->se_proto, in register_rpc() 516 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)); in register_rpc() 520 static void unregister_rpc(servtab_t *sep) in unregister_rpc() argument [all …]
|
/busybox-1.35.0/coreutils/ |
D | seq.c | 43 const char *sep, *opt_s = "\n"; in seq_main() local 104 sep = ""; in seq_main() 108 if (printf("%s%0*.*f", sep, width, frac_part, v) < 0) in seq_main() 110 sep = opt_s; in seq_main()
|
D | nl.c | 66 ns.sep = "\t"; in nl_main() 68 &ns.width, &ns.sep, &ns.start, &ns.inc, &opt_b); in nl_main() 71 ns.empty_str = xasprintf("%*s", ns.width + (int)strlen(ns.sep), ""); in nl_main()
|
D | cat.c | 203 ns.sep = "\t"; in cat_main()
|
/busybox-1.35.0/miscutils/ |
D | adjtimex.c | 129 const char *sep; in adjtimex_main() local 148 sep = ""; in adjtimex_main() 151 printf("%s%s", sep, name); in adjtimex_main() 152 sep = " | "; in adjtimex_main()
|
/busybox-1.35.0/libbb/ |
D | print_numbered_lines.c | 25 printf("%*u%s", ns->width, N, ns->sep); in print_numbered_lines()
|
/busybox-1.35.0/shell/ |
D | brace.txt | 6 form of an optional preamble, followed by either a series of comma-sep-
|
D | ash.c | 4949 cmdlist(union node *np, int sep) in cmdlist() argument 4952 if (!sep) in cmdlist() 4955 if (sep && np->narg.next) in cmdlist() 7439 int sep; in varvalue() local 7452 sep = (flags & EXP_FULL) << CHAR_BIT; in varvalue() 7487 if (quoted && sep) in varvalue() 7509 c = !((quoted | ~sep) & EXP_QUOTED) - 1; in varvalue() 7510 sep &= ~quoted; in varvalue() 7511 sep |= ifsset() ? (unsigned char)(c & ifsval()[0]) : ' '; in varvalue() 7513 sepc = sep; in varvalue() [all …]
|
/busybox-1.35.0/editors/ |
D | awk.c | 2085 const char *sep, *s; in handle_special() local 2098 sep = getvar_s(intvar[OFS]); in handle_special() 2099 sl = strlen(sep); in handle_special() 2106 memcpy(b+len, sep, sl); in handle_special() 3426 const char *sep = ""; in evaluate() local 3429 sep = getvar_s(intvar[SUBSEP]); in evaluate() 3430 setvar_p(res, xasprintf("%s%s%s", L.s, sep, R.s)); in evaluate()
|
/busybox-1.35.0/include/ |
D | libbb.h | 1536 const char *sep; member
|