Lines Matching refs:getopt_word
231 bsdtar->getopt_word = *bsdtar->argv++; in bsdtar_getopt()
241 opt = *bsdtar->getopt_word++; in bsdtar_getopt()
281 bsdtar->getopt_word = *bsdtar->argv++; in bsdtar_getopt()
283 if (bsdtar->getopt_word[1] == '-') { in bsdtar_getopt()
286 bsdtar->getopt_word += 2; /* Skip leading '--' */ in bsdtar_getopt()
290 ++bsdtar->getopt_word; /* Skip leading '-' */ in bsdtar_getopt()
299 opt = *bsdtar->getopt_word++; in bsdtar_getopt()
316 if (bsdtar->getopt_word[0] == '\0') { in bsdtar_getopt()
318 bsdtar->getopt_word = *bsdtar->argv; in bsdtar_getopt()
319 if (bsdtar->getopt_word == NULL) { in bsdtar_getopt()
333 bsdtar->argument = bsdtar->getopt_word; in bsdtar_getopt()
344 p = strchr(bsdtar->getopt_word, '='); in bsdtar_getopt()
346 optlength = (size_t)(p - bsdtar->getopt_word); in bsdtar_getopt()
349 optlength = strlen(bsdtar->getopt_word); in bsdtar_getopt()
355 if (popt->name[0] != bsdtar->getopt_word[0]) in bsdtar_getopt()
358 if (strncmp(bsdtar->getopt_word, popt->name, optlength) == 0) { in bsdtar_getopt()
373 long_prefix, bsdtar->getopt_word); in bsdtar_getopt()
379 long_prefix, bsdtar->getopt_word, match->name, match2->name); in bsdtar_getopt()