Lines Matching refs:ep
360 char **ep; in listvars() local
363 STARTSTACKSTR(ep); in listvars()
369 if (ep == stackstrend()) in listvars()
370 ep = growstackstr(); in listvars()
371 *ep++ = (char *) vp->text; in listvars()
374 if (ep == stackstrend()) in listvars()
375 ep = growstackstr(); in listvars()
377 *end = ep; in listvars()
378 *ep++ = NULL; in listvars()
379 return grabstackstr(ep); in listvars()
396 char **ep, **epend; in showvars() local
398 ep = listvars(on, off, &epend); in showvars()
399 qsort(ep, epend - ep, sizeof(char *), vpcmp); in showvars()
403 for (; ep < epend; ep++) { in showvars()
407 p = strchrnul(*ep, '='); in showvars()
412 out1fmt("%s%s%.*s%s\n", prefix, sep, (int)(p - *ep), *ep, q); in showvars()