Lines Matching refs:optv
63 char *opt, **optv; in openpam_set_option() local
75 if (strncmp(cur->optv[i], option, len) == 0 && in openpam_set_option()
76 (cur->optv[i][len] == '\0' || cur->optv[i][len] == '=')) in openpam_set_option()
83 for (free(cur->optv[i]); i < cur->optc; ++i) in openpam_set_option()
84 cur->optv[i] = cur->optv[i + 1]; in openpam_set_option()
85 cur->optv[i] = NULL; in openpam_set_option()
93 optv = realloc(cur->optv, sizeof(char *) * (cur->optc + 2)); in openpam_set_option()
94 if (optv == NULL) { in openpam_set_option()
98 optv[i] = opt; in openpam_set_option()
99 optv[i + 1] = NULL; in openpam_set_option()
100 cur->optv = optv; in openpam_set_option()
104 FREE(cur->optv[i]); in openpam_set_option()
105 cur->optv[i] = opt; in openpam_set_option()