Searched refs:nargc (Results 1 – 4 of 4) sorted by relevance
/third_party/libwebsockets/win32port/win32helpers/ |
D | getopt_long.c | 81 getopt_internal(nargc, nargv, ostr) in getopt_internal() argument 82 int nargc; in getopt_internal() 94 if (optind >= nargc || *(place = nargv[optind]) != '-') { 126 else if (nargc <= ++optind) { /* no arg */ 147 getopt2(nargc, nargv, ostr) 148 int nargc; 154 if ((retval = getopt_internal(nargc, nargv, ostr)) == -2) { 167 getopt_long(nargc, nargv, options, long_options, index) in getopt_long() argument 168 int nargc; in getopt_long() 181 if ((retval = getopt_internal(nargc, nargv, options)) == -2) {
|
D | getopt.c | 87 getopt(nargc, nargv, ostr) in getopt() argument 88 int nargc; in getopt() 102 if (optind >= nargc || *(place = nargv[optind]) != '-') { 136 else if (nargc <= ++optind) { /* no arg */
|
/third_party/mesa3d/src/getopt/ |
D | getopt_long.c | 277 getopt_internal(int nargc, char * const *nargv, const char *options, in getopt_internal() argument 313 if (optind >= nargc) { /* end of argument vector */ in getopt_internal() 429 else if (++optind >= nargc) { /* no arg */ in getopt_internal() 450 if (++optind >= nargc) { /* no arg */ in getopt_internal() 473 getopt(int nargc, char * const *nargv, const char *options) in getopt() argument 484 return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); in getopt() 492 getopt_long(int nargc, char * const *nargv, const char *options, in getopt_long() argument 496 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long() 505 getopt_long_only(int nargc, char * const *nargv, const char *options, in getopt_long_only() argument 509 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long_only()
|
/third_party/node/deps/cares/src/tools/ |
D | ares_getopt.c | 52 void ares_getopt_init(ares_getopt_state_t *state, int nargc, const char **nargv) in ares_getopt_init() argument 58 state->argc = nargc; in ares_getopt_init()
|