Lines Matching defs:optarg
327 get_advice(char *optarg)
335 if (strcmp(optarg, "access_default") == 0)
337 else if (strcmp(optarg, "access_many") == 0)
339 else if (strcmp(optarg, "access_lwp") == 0)
341 else if (strcmp(optarg, "sequential") == 0)
343 else if (strcmp(optarg, "willneed") == 0)
345 else if (strcmp(optarg, "dontneed") == 0)
347 else if (strcmp(optarg, "random") == 0)
349 else if (strcmp(optarg, "normal") == 0)
351 else if (strcmp(optarg, "free") == 0)
353 else if (strcmp(optarg, "purge") == 0)
357 progname, optarg);
368 atosz(char *optarg, char **endptr)
372 if (optarg == NULL || optarg[0] == '\0')
375 sz = strtoll(optarg, endptr, 0);
981 options = optarg;