HomeSort by relevance Sort by last modified time
    Searched refs:strtoul (Results 176 - 200 of 428) sorted by null

1 2 3 4 5 6 78 91011>>

  /system/core/debuggerd/
backtrace.c 138 pid_t new_tid = strtoul(de->d_name, &end, 10);
  /system/core/init/
builtins.c 301 mode = strtoul(args[2], 0, 8);
552 kbe.kb_table = strtoul(args[1], 0, 0);
553 kbe.kb_index = strtoul(args[2], 0, 0);
554 kbe.kb_value = strtoul(args[3], 0, 0);
util.c 75 v = (unsigned int) strtoul(s, 0, 0);
438 *revision = strtoul(x + 2, 0, 16);
  /dalvik/dexopt/
OptMain.cpp 454 GET_ARG(modWhen, strtoul, "bad modWhen");
455 GET_ARG(crc, strtoul, "bad crc");
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddress.cc 202 SetPort(strtoul(str.substr(colon + 1).c_str(), NULL, 10));
212 SetPort(strtoul(str.substr(pos + 1).c_str(), NULL, 10));
  /external/e2fsprogs/misc/
tune2fs.c 657 mount_count = strtoul(optarg, &tmp, 0);
691 resgid = strtoul(optarg, &tmp, 0);
711 interval = strtoul(optarg, &tmp, 0);
797 reserved_blocks = strtoul(optarg, &tmp, 0);
817 resuid = strtoul(optarg, &tmp, 0);
843 new_inode_size = strtoul(optarg, &tmp, 0);
939 stride = strtoul(arg, &p, 0);
954 stripe_width = strtoul(arg, &p, 0);
    [all...]
mke2fs.c 726 param->s_raid_stride = strtoul(arg, &p, 0);
741 param->s_raid_stripe_width = strtoul(arg, &p, 0);
810 lazy_itable_init = strtoul(arg, &p, 0);
1296 size = strtoul(optarg, &tmp, 0);
1310 fs_param.s_blocks_per_group = strtoul(optarg, &tmp, 0);
1323 flex_bg_size = strtoul(optarg, &tmp, 0);
1337 inode_ratio = strtoul(optarg, &tmp, 0);
    [all...]
  /external/iproute2/misc/
lnstat.c 258 count = strtoul(optarg, NULL, 0);
301 len = strtoul(tok, NULL, 0);
  /external/liblzf/
lzf.c 459 blocksize = strtoul (p, 0, 0);
498 blocksize = strtoul (optarg, 0, 0);
  /system/core/fastboot/
fastboot.c 576 limit = strtoul(response, NULL, 0);
913 base_addr = strtoul(optarg, 0, 16);
925 val = strtoul(optarg, &endptr, 0);
932 kernel_offset = strtoul(optarg, 0, 16);
938 page_size = (unsigned)strtoul(optarg, NULL, 0);
945 ramdisk_offset = strtoul(optarg, 0, 16);
  /external/qemu/
usb-linux.c 1116 vendor_id = strtoul(buf, NULL, 16);
1119 product_id = strtoul(buf, NULL, 16);
1127 class_id = strtoul(buf, NULL, 16);
    [all...]
  /system/core/sdcard/
sdcard.c 444 node->userid = strtoul(node->name, NULL, 10);
499 node->userid = strtoul(node->name, NULL, 10);
    [all...]
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 349 numericLength = strtoul(sectionLength, &endScan, 16);
455 sectionIndex1 = strtoul(sectionString, &endScan, 16);
587 offset = strtoul(offsetArg, &endOffsetArg, 16);
    [all...]
  /external/e2fsprogs/debugfs/
set_fields.c 17 #define STRTOULL strtoul
402 num = strtoul(arg, &tmp, 0);
561 set_bg = strtoul(argv[1], &end, 0);
  /external/oprofile/daemon/
opd_ibs.c 186 ibs_bta_enabled = strtoul(buf, NULL, 10);
447 *count = strtoul(tok1, &end, 10);
472 *ibs_op_um = strtoul(str, &end, 16);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu.c 904 sdreg.offset = strtoul(argv[1], &ptr, 0);
924 sdreg.value = strtoul(argv[2], &ptr, 0);
1006 addr = strtoul(argv[0], &ptr, 0);
1013 len = strtoul(argv[1], &ptr, 0);
    [all...]
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_mc.c 634 entity_id = strtoul(p, &end, 10);
645 pad = strtoul(p, &end, 10);
735 flags = strtoul(p, &end, 10);
  /dalvik/vm/
Misc.cpp 716 pData->utime = strtoul(cp+1, &endp, 10);
718 ALOGI("Warning: strtoul failed on utime ('%.30s...')", cp);
724 pData->stime = strtoul(cp+1, &endp, 10);
726 ALOGI("Warning: strtoul failed on stime ('%.30s...')", cp);
742 ALOGI("Warning: strtoul failed on processor ('%.30s...')", cp);
  /external/e2fsprogs/lib/ext2fs/
undo_io.c 560 tmp = strtoul(arg, &end, 0);
580 tmp = strtoul(arg, &end, 0);
  /external/e2fsprogs/tests/progs/
test_rel.c 43 *ino = strtoul(str, &tmp, 0);
59 *blk = strtoul(str, &tmp, 0);
  /bionic/tests/
dlfcn_test.cpp 161 uintptr_t start = strtoul(line, 0, 16);
  /external/bison/lib/
strtol.c 43 /* Nonzero if we are defining 'strtoul' or 'strtoull', operating on
95 # define strtol strtoul
  /external/bison/src/
scan-gram.l 529 unsigned long int c = strtoul (yytext + 1, NULL, 8);
539 unsigned long int c = strtoul (yytext + 2, NULL, 16);
779 unsigned long int num = strtoul (number, NULL, base);
801 unsigned long int code = strtoul (ucn + 2, NULL, 16);
856 unsigned long int lineno = strtoul (args, &file, 10);
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presencepushtask.cc 235 uint32 src_id_num = strtoul(src_id->BodyText().c_str(), &endptr, 10);
  /external/chromium_org/sandbox/linux/suid/
sandbox.c 459 unsigned long pid_ul = strtoul(argv[2], &endptr, 10);

Completed in 2465 milliseconds

1 2 3 4 5 6 78 91011>>