HomeSort by relevance Sort by last modified time
    Searched refs:nextarg (Results 1 - 10 of 10) sorted by null

  /external/curl/src/
tool_getparam.c 382 char *nextarg, /* NULL if unset */
471 nextarg = (char *)&parse[1]; /* this is the actual extra parameter */
474 else if(!nextarg)
485 GetStr(&config->dns_ipv4_addr, nextarg);
489 GetStr(&config->dns_ipv6_addr, nextarg);
492 GetStr(&config->random_file, nextarg);
495 GetStr(&config->egd_file, nextarg);
498 GetStr(&config->oauth_bearer, nextarg);
501 err = str2udouble(&config->connecttimeout, nextarg);
506 GetStr(&config->cipher_list, nextarg);
1876 char *nextarg; local
    [all...]
tool_getparam.h 49 ParameterError getparameter(char *flag, char *nextarg, bool *usedarg,
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
commands.c 157 static int get_range(char *args, range_t * range, char **nextarg)
161 char *nextarg; local
163 args = strtok_r(args, whitespace, &nextarg);
167 args = nextarg + strspn(nextarg, whitespace);
173 args = strtok_r(args, whitespace, &nextarg);
181 args = nextarg + strspn(nextarg, whitespace);
185 *nextarg = args;
260 static int get_mbind_policy(char *args, char **nextarg)
561 char *idlist, *nextarg; local
662 char *segname = NULL, *nextarg; local
681 char *segname, *nextarg; local
719 char *pathname, *nextarg; local
761 char *segname, *nextarg; local
778 char *segname, *nextarg; local
811 char *segname, *nextarg; local
832 char *segname, *nextarg; local
872 char *segname, *nextarg; local
935 char *segname, *nextarg; local
972 char *segname, *nextarg; local
1104 char *cmd, *nextarg; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 328 int nextarg; /* 1-based argument index */ local
422 * Get * arguments, including the form *nn$. Preserve the nextarg
433 int hold = nextarg; \
442 nextarg = n2; \
444 nextarg = hold; \
451 * Get the argument indexed by nextarg. If the argument table is
456 ((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
457 (nextarg++, va_arg(ap, type)))
473 nextarg = 1;
567 nextarg = n
1151 int nextarg; \/* 1-based argument index *\/ local
    [all...]
vfwprintf.c 332 int nextarg; /* 1-based argument index */ local
414 * Get * arguments, including the form *nn$. Preserve the nextarg
425 int hold = nextarg; \
430 nextarg = n2; \
432 nextarg = hold; \
439 * Get the argument indexed by nextarg. If the argument table is
444 ((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
445 (nextarg++, va_arg(ap, type)))
461 nextarg = 1;
539 nextarg = n
1120 int nextarg; \/* 1-based argument index *\/ local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 683 int nextarg; /* 1-based argument index */ local
750 * Get the argument indexed by nextarg. If the argument table is
755 ((/*CONSTCOND*/argtable != NULL) ? *((type*)(void*)(&argtable[nextarg++])) : \
756 (nextarg++, va_arg(ap, type)))
789 * Get * arguments, including the form *nn$. Preserve the nextarg
800 int hold = nextarg; \
806 nextarg = n2; \
808 nextarg = hold; \
845 nextarg = 1;
952 nextarg = n;
1603 int nextarg; \/* 1-based argument index *\/ local
    [all...]
  /external/toybox/lib/
args.c 232 long *nextarg = (long *)&this; local
335 new->arg = (void *)nextarg;
336 *(nextarg++) = new->val[2].l;