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

  /hardware/broadcom/wlan/bcmdhd/dhdutil/
miniopt.c 60 char *p, *eq, *valstr, *endptr = NULL; local
67 t->valstr = NULL;
69 valstr = NULL;
91 valstr = p;
106 valstr = eq + 1;
107 if (*valstr == '\0') {
127 valstr = NULL;
135 valstr = *argv;
141 valstr = p;
144 /* parse valstr as int just in case *
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 52 char* valstr; /* positional param, or value for the option, member in struct:miniopt
56 uint uval; /* strtol translation of valstr */
57 int val; /* strtol translation of valstr */
  /external/ppp/pppd/plugins/radius/
dict.c 41 char valstr[AUTH_ID_LEN]; local
108 n = sscanf(buffer, "%s%s%s%s%s", dummystr, namestr, valstr, typestr, vendorstr);
136 if (!isdigit (*valstr))
143 value = atoi (valstr);
212 namestr, valstr) != 4)
239 if (!isdigit (*valstr))
246 value = atoi (valstr);
avpair.c 526 char valstr[AUTH_ID_LEN]; local
578 rc_fieldcpy (valstr, &buffer);
600 strcpy (pair->strvalue, valstr);
601 pair->lvalue = strlen(valstr);
605 if (isdigit (*valstr))
607 pair->lvalue = atoi (valstr);
611 if ((dval = rc_dict_findval (valstr))
614 error("rc_avpair_parse: unknown attribute value: %s", valstr);
630 pair->lvalue = rc_get_ipaddr(valstr);
639 rc_str2tm (valstr, tm)
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
cpuinfo.c 33 char *istr = NULL, *valstr = NULL, *saveptr = NULL; local
62 valstr = index(saveptr, ':');
63 if (valstr == NULL)
65 valstr++;
66 sscanf(valstr, " %d\n", &data);
  /external/iputils/Modules/
pg3.c 553 char name[16], valstr[32]; local
641 char *v = valstr;
644 len = strn_len(&buffer[i], sizeof(valstr)-1);
645 memset(valstr, 0, sizeof(valstr));
646 strncpy(valstr, &buffer[i], len);
  /external/valgrind/coregrind/
m_libcproc.c 122 HChar *valstr = VG_(malloc)("libcproc.es.1", len + VG_(strlen)(val) + 2); local
125 VG_(sprintf)(valstr, "%s=%s", varname, val);
129 *cpp = valstr;
136 env[0] = valstr;
147 *cpp++ = valstr;
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 299 const char* valstr = NULL; local
301 valstr = mParameters.get(EmulatedCamera::FACING_KEY);
302 if (valstr != NULL) {
303 if (strcmp(valstr, EmulatedCamera::FACING_FRONT) == 0) {
306 else if (strcmp(valstr, EmulatedCamera::FACING_BACK) == 0) {
313 valstr = mParameters.get(EmulatedCamera::ORIENTATION_KEY);
314 if (valstr != NULL) {
315 info->orientation = atoi(valstr);
    [all...]
  /external/toybox/toys/pending/
dhcp.c 389 char *option, *valstr, *grp, *tp; local
423 valstr = strtok(NULL, "\n");
424 if (!valstr) error_exit("option %s has no value defined.\n", option);
425 dbg(" value : %-20s \n ", valstr);
430 convtmp = strtou32(valstr);
431 if (convtmp < 0) error_exit("Invalid/wrong formated number %s", valstr);
438 convtmp = strtou32(valstr);
439 if (convtmp < 0) error_exit("Invalid/malformed number %s", valstr);
446 convtmp = strtou32(valstr);
447 if (convtmp < 0) error_exit("Invalid/malformed number %s", valstr);
    [all...]
dhcpd.c 544 char *option, *valstr, *grp, *tp; local
579 if (!(valstr = strtok(NULL, " \t"))) {
583 dbg(" value : %-20s : ", valstr);
588 strtou32(valstr, &convtmp);
594 strtou32(valstr, &convtmp);
600 strtou32(valstr, &convtmp);
606 striptovar(valstr, options_list[count].val);
609 options_list[count].len = strlen(valstr);
610 options_list[count].val = strdup(valstr);
613 while(valstr){
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-solaris.c 1465 HChar *valstr = VG_(malloc)("syswrap.spawn.9", len); local
    [all...]

Completed in 384 milliseconds