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

  /bionic/libc/stdio/
vfprintf.cpp 98 int nextarg; /* 1-based argument index */ local
151 nextarg = 1;
229 nextarg = n;
264 nextarg = n;
vfwprintf.cpp 98 int nextarg; /* 1-based argument index */ local
140 nextarg = 1;
218 nextarg = n;
253 nextarg = n;
printf_common.h 273 // Get * arguments, including the form *nn$. Preserve the nextarg
283 int hold = nextarg; \
291 nextarg = n2; \
293 nextarg = hold; \
299 // Get the argument indexed by nextarg. If the argument table is
303 ((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : (nextarg++, va_arg(ap, type)))
322 int nextarg; /* 1-based argument index */ local
329 ((nextarg >= tablesize) ? __grow_type_table(&typetable, &tablesize) : 0, \
330 (nextarg > tablemax) ? tablemax = nextarg : 0, typetable[nextarg++] = type
    [all...]
  /external/toybox/lib/
args.c 235 long *nextarg = (long *)&this; local
338 new->arg = (void *)nextarg;
339 *(nextarg++) = new->val[2].l;
  /external/curl/src/
tool_getparam.c 426 GetFileAndPassword(char *nextarg, char **file, char **password)
429 parse_cert_parameter(nextarg, &certname, &passphrase);
436 cleanarg(nextarg);
492 char *nextarg, /* NULL if unset */
580 nextarg = (char *)&parse[1]; /* this is the actual extra parameter */
583 else if(!nextarg)
589 (nextarg[0] == '-') && nextarg[1]) {
592 nextarg);
603 GetStr(&config->dns_ipv4_addr, nextarg);
2195 char *nextarg = (i < (argc - 1)) ? argv[i + 1] : NULL; local
    [all...]
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
commands.c 155 static int get_range(char *args, range_t * range, char **nextarg)
159 char *nextarg; local
161 args = strtok_r(args, whitespace, &nextarg);
165 args = nextarg + strspn(nextarg, whitespace);
171 args = strtok_r(args, whitespace, &nextarg);
179 args = nextarg + strspn(nextarg, whitespace);
183 *nextarg = args;
258 static int get_mbind_policy(char *args, char **nextarg)
551 char *idlist, *nextarg; local
652 char *segname = NULL, *nextarg; local
671 char *segname, *nextarg; local
709 char *pathname, *nextarg; local
751 char *segname, *nextarg; local
768 char *segname, *nextarg; local
801 char *segname, *nextarg; local
822 char *segname, *nextarg; local
862 char *segname, *nextarg; local
925 char *segname, *nextarg; local
962 char *segname, *nextarg; local
1094 char *cmd, *nextarg; 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/one-true-awk/
run.c 1523 Node *nextarg; local
    [all...]

Completed in 1964 milliseconds