Searched refs:optv (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_set_option.c | 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() [all …]
|
H A D | openpam_get_option.c | 68 if (strncmp(cur->optv[i], option, len) == 0) { in openpam_get_option() 69 if (cur->optv[i][len] == '\0') in openpam_get_option() 70 RETURNS(&cur->optv[i][len]); in openpam_get_option() 71 else if (cur->optv[i][len] == '=') in openpam_get_option() 72 RETURNS(&cur->optv[i][len + 1]); in openpam_get_option()
|
H A D | openpam_configure.c | 282 this->optv = wordv; in openpam_parse_chain() 317 if (this && this->optc && this->optv) in openpam_parse_chain() 318 FREEV(this->optc, this->optv); in openpam_parse_chain()
|
H A D | openpam_load.c | 111 FREEV(chain->optc, chain->optv); in openpam_destroy_chain()
|
H A D | openpam_impl.h | 75 char **optv; member
|
H A D | openpam_dispatch.c | 118 chain->optc, (const char **)(intptr_t)chain->optv); in openpam_dispatch()
|
/freebsd/contrib/sendmail/libsm/ |
H A D | cf.c | 41 sm_cf_getopt(path, optc, optv) 44 SM_CF_OPT_T *optv; variable 84 if (SM_STRCASEEQ(optv[i].opt_name, id)) 86 optv[i].opt_val = sm_strdup_x(val);
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | cf.h | 27 SM_CF_OPT_T *optv));
|
/freebsd/contrib/openpam/bin/openpam_dump_policy/ |
H A D | openpam_dump_policy.c | 87 for (opt = chain->optv; *opt; ++opt) { in openpam_dump_chain()
|