Searched refs:endp (Results 1 - 4 of 4) sorted by relevance

/forgerock/web-agents-v4/source/
H A Dip.c141 char * endp; local
142 uint64_t bits64 = strtoul(e + 1, &endp, 10);
144 if (e + 1 == endp)
147 if (* endp)
173 char * endp; local
174 uint64_t bits64 = strtoul(e + 1, &endp, 10);
176 if (e + 1 == endp)
179 if (* endp)
H A Dshared.c184 char *endp = NULL; local
185 unsigned long v = strtoul(env, &endp, 0);
186 if (env < endp && *endp == '\0' && 0 < v && v < AM_SHARED_MAX_SIZE) {
/lxc/src/lxc/
H A Dconfile.c1364 char *endp = NULL; local
1367 n = strtol(sig, &endp, 10);
1368 if (sig == endp || n < 0 || errno != 0)
/lxc/src/include/
H A Dgetsubopt.c51 char *endp, *vstart; local
58 endp = strchrnul (*optionp, ',');
61 vstart = memchr (*optionp, '=', endp - *optionp);
63 vstart = endp;
72 *valuep = vstart != endp ? vstart + 1 : NULL;
74 if (*endp != '\0')
75 *endp++ = '\0';
76 *optionp = endp;
84 if (*endp != '\0')
85 *endp
[all...]

Completed in 558 milliseconds