Searched defs:ep (Results 1 - 6 of 6) sorted by relevance

/system/core/toolbox/upstream-netbsd/usr.bin/printenv/
H A Dprintenv.c63 char *cp, **ep; local
77 for (ep = environ; *ep; ep++)
78 (void)printf("%s\n", *ep);
86 for (ep = environ; *ep; ep++)
87 if (!memcmp(*ep, *argv, len)) {
88 cp = *ep
[all...]
/system/core/toolbox/upstream-netbsd/lib/libc/gen/
H A Dgetbsize.c58 char *ep, *p; local
67 if ((n = strtol(p, &ep, 10)) < 0)
71 if (*ep && ep[1])
73 switch (*ep) {
/system/core/toolbox/upstream-netbsd/bin/kill/
H A Dkill.c76 char *ep; local
93 numsig = strtoimax(*argv, &ep, 10);
95 if (*ep != '\0' || numsig == INTMAX_MIN || numsig == INTMAX_MAX) {
130 numsig = strtoimax(sn, &ep, 10);
132 if (*ep || numsig == INTMAX_MIN || numsig == INTMAX_MAX ) {
161 pid = strtoimax(*argv, &ep, 10);
163 if (!**argv || *ep || pid == INTMAX_MIN ||
/system/core/toolbox/upstream-netbsd/sbin/chown/
H A Dchown.c279 char *ep; local
284 val = (id_t)strtoul(name, &ep, 10);
287 if (*ep != '\0')
/system/core/libutils/
H A DProcessCallStack.cpp133 struct dirent *ep; local
162 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) {
164 sscanf(ep->d_name, "%d", &tid);
169 __FUNCTION__, PATH_SELF_TASK, ep->d_name);
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.c317 char *ep; local
419 l = strtoull(optarg, &ep, 10);
423 else if (ep[0] != '\0') {
508 mcount = strtoull(optarg, &ep, 10);
512 else if (ep[0] != '\0') {

Completed in 262 milliseconds