Home
last modified time | relevance | path

Searched refs:endptr (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/bionic/
Dndk_cruft.cpp150 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) { in strntoumax() argument
190 if (endptr) { in strntoumax()
191 *endptr = (char*) p; in strntoumax()
198 intmax_t strntoimax(const char* nptr, char** endptr, int base, size_t n) { in strntoimax() argument
199 return (intmax_t) strntoumax(nptr, endptr, base, n); in strntoimax()
Dlibc_init_static.cpp310 char* endptr; in __get_memtag_upgrade_secs() local
311 timed_upgrade = strtoll(env, &endptr, 10); in __get_memtag_upgrade_secs()
312 if (*endptr != '\0' || timed_upgrade < 0) { in __get_memtag_upgrade_secs()
/bionic/libc/dns/resolv/
Dres_debug.c1202 char *endptr; in res_nametoclass() local
1213 result = strtoul(buf + 5, &endptr, 10); in res_nametoclass()
1214 if (errno == 0 && *endptr == '\0' && result <= 0xffffU) in res_nametoclass()
1225 char *endptr; in res_nametotype() local
1236 result = strtoul(buf + 4, &endptr, 10); in res_nametotype()
1237 if (errno == 0 && *endptr == '\0' && result <= 0xffffU) in res_nametotype()