• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/rsync-42/rsync/popt/

Lines Matching defs:longName

62     for (; opt->longName || opt->shortName || opt->arg; opt++) {
85 for (; opt->longName || opt->shortName || opt->arg; opt++) {
113 for (; opt->longName || opt->shortName || opt->arg; opt++) {
125 (myOpt->longName && opt->longName &&
126 /*@-nullpass@*/ /* LCL: opt->longName != NULL */
127 !strcmp(myOpt->longName, opt->longName)))
237 /* Only one of longName, shortName should be set, not both. */
239 /*@null@*/ const char * longName, char shortName)
252 if (longName && !(item->option.longName &&
253 !strcmp(longName, item->option.longName)))
280 { char *s = malloc((longName ? strlen(longName) : 0) + 3);
282 if (longName)
283 sprintf(s, "--%s", longName);
296 /* Only one of longName, shortName may be set at a time */
298 /*@null@*/ const char * longName, char shortName,
301 con->os->currAlias, con->os->currAlias->option.longName @*/
309 if (longName && (item->option.longName &&
310 !strcmp(longName, item->option.longName)))
321 if (longName && !(item->option.longName &&
322 !strcmp(longName, item->option.longName)))
434 findOption(const struct poptOption * opt, /*@null@*/ const char * longName,
444 if (singleDash && !shortName && (longName && *longName == '\0'))
447 for (; opt->longName || opt->shortName || opt->arg; opt++) {
454 opt2 = findOption(opt->arg, longName, shortName, callback,
466 } else if (longName && opt->longName &&
468 /*@-nullpass@*/ /* LCL: opt->longName != NULL */
469 !strcmp(longName, opt->longName))
478 if (!opt->longName && !opt->shortName)
942 { char *s = malloc((opt->longName ? strlen(opt->longName) : 0) + 3);
944 if (opt->longName)
947 opt->longName);
1026 item->option.longName = _free(item->option.longName);
1038 item->option.longName = _free(item->option.longName);
1062 item->option.longName = alias.longName;
1100 item->option.longName =
1101 (newItem->option.longName ? xstrdup(newItem->option.longName) : NULL);