Lines Matching refs:qop
69 if (!qop_num_pairs[0].qop) { in __gss_read_qop_file()
116 qop_num_pairs[qop_num_pair_cnt].qop = strdup(name); in __gss_read_qop_file()
117 if (qop_num_pairs[qop_num_pair_cnt].qop == NULL) in __gss_read_qop_file()
124 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
138 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
148 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
163 char *qop, in __gss_qop_to_num() argument
174 if (qop == NULL || strlen(qop) == 0 || in __gss_qop_to_num()
175 strcasecmp(qop, Q_DEFAULT) == 0) { in __gss_qop_to_num()
185 (strcasecmp(qop, qop_num_pairs[i].qop) == 0)) { in __gss_qop_to_num()
198 char **qop in __gss_num_to_qop() argument
204 if (!qop) in __gss_num_to_qop()
206 *qop = NULL; in __gss_num_to_qop()
209 *qop = Q_DEFAULT; in __gss_num_to_qop()
222 *qop = qop_num_pairs[i].qop; in __gss_num_to_qop()
257 qops[cnt++] = qop_num_pairs[i].qop; in __gss_get_mech_info()