Searched refs:ep (Results 1 – 6 of 6) sorted by relevance
/busybox-1.35.0/coreutils/ |
D | env.c | 96 char **ep; in env_main() local 98 for (ep = environ; *ep; ep++) { in env_main() 99 printf("%s%c", *ep, opts); in env_main()
|
/busybox-1.35.0/scripts/kconfig/ |
D | menu.c | 210 struct expr *parentdep, *basedep, *dep, *dep2, **ep; in menu_finalize() local 309 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) in menu_finalize() 311 *ep = expr_alloc_one(E_CHOICE, NULL); in menu_finalize() 312 (*ep)->right.sym = menu->sym; in menu_finalize()
|
D | expr.c | 852 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2) in expr_extract_eq() argument 857 expr_extract_eq(type, ep, &e1->left.expr, &e2); in expr_extract_eq() 858 expr_extract_eq(type, ep, &e1->right.expr, &e2); in expr_extract_eq() 862 expr_extract_eq(type, ep, ep1, &e2->left.expr); in expr_extract_eq() 863 expr_extract_eq(type, ep, ep1, &e2->right.expr); in expr_extract_eq() 867 *ep = *ep ? expr_alloc_two(type, *ep, e1) : e1; in expr_extract_eq()
|
D | expr.h | 172 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
|
/busybox-1.35.0/shell/ |
D | ash.c | 2540 char **ep; in listvars() local 2543 STARTSTACKSTR(ep); in listvars() 2564 if (ep == stackstrend()) in listvars() 2565 ep = growstackstr(); in listvars() 2566 *ep++ = (char*)vp->var_text; in listvars() 2576 if (ep == stackstrend()) in listvars() 2577 ep = growstackstr(); in listvars() 2578 *ep++ = lp->text; in listvars() 2583 if (ep == stackstrend()) in listvars() 2584 ep = growstackstr(); in listvars() [all …]
|
/busybox-1.35.0/modutils/ |
D | modutils-24.c | 2333 char *p, *v, *n, *ep; in get_modinfo_value() local 2340 ep = p + sec->header.sh_size; in get_modinfo_value() 2341 while (p < ep) { in get_modinfo_value()
|