Searched refs:possible_arg (Results 1 – 1 of 1) sorted by relevance
197 char *possible_arg = 0; in getopt_internal() local299 possible_arg = strchr (argv[data->optind] + data->optwhere, '='); in getopt_internal()300 if (possible_arg == 0) in getopt_internal()304 possible_arg = argv[data->optind] + match_chars; in getopt_internal()308 match_chars = (possible_arg - argv[data->optind]) - data->optwhere; in getopt_internal()373 possible_arg = argv[data->optind] + data->optwhere + 1; in getopt_internal()382 if (*possible_arg == '=') in getopt_internal()383 possible_arg++; in getopt_internal()384 data->optarg = (*possible_arg != '\0') ? possible_arg : 0; in getopt_internal()388 if (*possible_arg == '=') in getopt_internal()[all …]