Home
last modified time | relevance | path

Searched refs:pfound (Results 1 – 3 of 3) sorted by relevance

/external/libusb/examples/getopt/
Dgetopt.c646 const struct option *pfound = NULL; local
664 pfound = p;
669 else if (pfound == NULL)
672 pfound = p;
676 || pfound->has_arg != p->has_arg
677 || pfound->flag != p->flag
678 || pfound->val != p->val)
694 if (pfound != NULL)
702 if (pfound->has_arg)
712 argv[0], pfound->name);
[all …]
/external/bison/lib/
Dgetopt.c484 const struct option *pfound = NULL; in _getopt_internal_r() local
506 pfound = p; in _getopt_internal_r()
511 else if (pfound == NULL) in _getopt_internal_r()
514 pfound = p; in _getopt_internal_r()
518 || pfound->has_arg != p->has_arg in _getopt_internal_r()
519 || pfound->flag != p->flag in _getopt_internal_r()
520 || pfound->val != p->val) in _getopt_internal_r()
535 first.p = pfound; in _getopt_internal_r()
601 if (pfound != NULL) in _getopt_internal_r()
609 if (pfound->has_arg) in _getopt_internal_r()
[all …]
/external/python/cpython2/Modules/
Dgetpath.c376 int pfound, efound; /* 1 if found; -1 if found build directory */ in calculate_path() local
505 if (!(pfound = search_for_prefix(argv0_path, home))) { in calculate_path()
517 if (pfound > 0) { /* Use the reduced prefix returned by Py_GetPrefix() */ in calculate_path()
537 if ((!pfound || !efound) && !Py_FrozenFlag) in calculate_path()
632 if (pfound > 0) { in calculate_path()