HomeSort by relevance Sort by last modified time
    Searched defs:endptr (Results 1 - 25 of 25) sorted by null

  /external/opencore/oscl/oscl/osclbase/src/
oscl_tagtree.cpp 29 tag_base_type endptr = dest + oscl_strlen(dest); local
30 while (*endptr != '.' && endptr != dest) endptr--;
31 *endptr = '\0';
  /system/core/toolbox/
sleep.c 46 char *endptr; local
52 seconds = strtoul(argv[1], &endptr, 10);
54 if (endptr == argv[1]) {
chown.c 41 char* endptr; local
42 uid = (int) strtoul(user, &endptr, 0);
43 if (endptr == user) { // no conversion
54 char* endptr; local
55 gid = (int) strtoul(group, &endptr, 0);
56 if (endptr == group) { // no conversion
  /build/tools/fs_get_stats/
fs_get_stats.c 39 char *endptr; local
51 perms = (unsigned)strtoul(argv[1], &endptr, 0);
52 if (!endptr || (endptr == argv[1]) || (*endptr != '\0')) {
  /hardware/broadcom/wlan/bcm4329/src/shared/
miniopt.c 65 char *p, *eq, *valstr, *endptr = NULL; local
151 t->uval = (uint)strtoul(valstr, &endptr, 0);
153 t->good_int = (*endptr == '\0');
  /bootable/recovery/applypatch/
main.c 37 char* endptr; local
38 size_t bytes = strtol(argv[2], &endptr, 10);
39 if (bytes == 0 && endptr == argv[2]) {
107 char* endptr; local
108 size_t target_size = strtol(argv[4], &endptr, 10);
109 if (target_size == 0 && endptr == argv[4]) {
  /external/icu4c/tools/pkgdata/
pkgtypes.c 157 CharList *endptr = NULL, *tmp; local
161 end = &endptr;
245 CharList *endptr = NULL;
250 end = &endptr;
  /system/extras/procmem/
procmem.c 74 char *endptr; local
96 pid = (pid_t)strtol(argv[argc - 1], &endptr, 10);
97 if (*endptr != '\0') {
  /build/tools/kcm/
kcm.cpp 303 char* endptr; local
304 *value = strtol(str, &endptr, 0);
305 if (*endptr != '\0') {
336 char* endptr; local
337 *value = strtol(str, &endptr, 0);
338 if (*endptr != '\0') {
  /external/bluetooth/bluez/common/
sdp-xml.c 449 char *endptr; local
461 val = strtoll(data, &endptr, 16);
464 if (*endptr != '\0')
485 char *endptr; local
510 int8_t val = strtoul(data, &endptr, 0);
513 if ((endptr != data) && (*endptr != '\0'))
522 uint8_t val = strtoul(data, &endptr, 0);
525 if ((endptr != data) && (*endptr != '\0')
    [all...]
  /external/bluetooth/bluez/serial/
port.c 106 char *endptr = NULL; local
108 channel = strtol(pattern, &endptr, 10);
118 if (endptr && *endptr == '\0' && port->channel == channel)
503 char *endptr = NULL; local
506 channel = strtol(pattern, &endptr, 10);
507 if ((endptr && *endptr != '\0') || channel < 1 || channel > 30)
  /external/bluetooth/glib/tests/
unicode-encoding.c 387 gchar *endptr; local
389 gunichar ch = strtoul (p, &endptr, 16);
390 if (*endptr != '\0')
sequence-test.c 1127 char *endptr; local
1129 return strtol (argv[1], &endptr, 0);
  /system/core/fastboot/
fastboot.c 593 char *endptr = NULL; local
597 val = strtoul(argv[1], &endptr, 0);
598 if (!endptr || *endptr != '\0' || (val & ~0xffff))
  /bootable/recovery/updater/
install.c 716 char* endptr; local
717 size_t bytes = strtol(bytes_str, &endptr, 10);
718 if (bytes == 0 && endptr == bytes_str) {
746 char* endptr; local
747 size_t target_size = strtol(target_size_str, &endptr, 10);
748 if (target_size == 0 && endptr == target_size_str) {
  /external/webkit/WebCore/platform/graphics/gtk/
WebKitWebSourceGStreamer.cpp 636 gchar* endptr = 0; local
637 gint64 icyMetaInt = g_ascii_strtoll(value.utf8().data(), &endptr, 10);
639 if (endptr && *endptr == '\0' && icyMetaInt > 0) {
  /bionic/libc/netbsd/resolv/
res_debug.c 1133 char *endptr; local
1144 result = strtoul(buf + 5, &endptr, 10);
1145 if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
1156 char *endptr; local
1167 result = strtoul(buf + 4, &endptr, 10);
1168 if (errno == 0 && *endptr == '\0' && result <= 0xffffU)
  /external/e2fsprogs/misc/
mke2fs.c 133 char *endptr; local
138 major = strtol(cp, &endptr, 10);
139 if (cp == endptr || *endptr != '.')
141 cp = endptr + 1;
142 minor = strtol(cp, &endptr, 10);
143 if (cp == endptr || *endptr != '.')
145 cp = endptr + 1;
146 rev = strtol(cp, &endptr, 10)
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu.c 691 char *endptr = NULL; local
704 func = strtol(argv[1], &endptr, 0);
705 if (*endptr != '\0') {
711 size = strtol(argv[2], &endptr, 0);
712 if (*endptr != '\0') {
1049 char *endptr = NULL; local
1058 idletime = strtol(argv[1], &endptr, 0);
1059 if (*endptr != '\0') {
1071 endptr = buf + strlen(buf) + 1;
1072 memcpy(endptr, &idletime, sizeof(uint32))
1098 char *endptr = NULL; local
1842 char *endptr = NULL; local
1879 char *endptr = NULL; local
1970 char *endptr = NULL; local
2082 char *endptr = NULL; local
    [all...]
  /external/libpng/
pngrutil.c 30 char **endptr)
43 *endptr = (char *)nptr + (png_strlen(nptr) - len + 1);
1655 png_charp buf, units, endptr; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrutil.c 26 __inline double png_strtod(png_structp png_ptr, PNG_CONST char *nptr, char **endptr)
39 *endptr = (char *)nptr + (png_strlen(nptr) - len + 1);
1577 png_charp buf, units, endptr; local
    [all...]
  /external/qemu/
qemu-char-android.c 668 char *endptr; local
672 endptr = NULL;
673 fd_in = strtol(fd_pair, &endptr, 10);
674 if (endptr == NULL || endptr == fd_pair || *endptr != ':')
676 endptr++; // skip colon
677 fd_pair = endptr;
678 endptr = NULL;
679 fd_out = strtol(fd_pair, &endptr, 10)
    [all...]
vl-android.c 2684 char *endptr; local
    [all...]
vl.c 2555 char *endptr; local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 889 char* endptr; local
910 id = strtoul(data, &endptr, 0);
911 if (*endptr != '\0') {
    [all...]

Completed in 342 milliseconds