Lines Matching refs:qop
71 if (!qop_num_pairs[0].qop) { in __gss_read_qop_file()
118 qop_num_pairs[qop_num_pair_cnt].qop = strdup(name); in __gss_read_qop_file()
119 if (qop_num_pairs[qop_num_pair_cnt].qop == NULL) in __gss_read_qop_file()
126 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
140 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
150 free(qop_num_pairs[qop_num_pair_cnt].qop); in __gss_read_qop_file()
165 char *qop, in __gss_qop_to_num() argument
176 if (qop == NULL || strlen(qop) == 0 || in __gss_qop_to_num()
177 strcasecmp(qop, Q_DEFAULT) == 0) { in __gss_qop_to_num()
187 (strcasecmp(qop, qop_num_pairs[i].qop) == 0)) { in __gss_qop_to_num()
200 char **qop in __gss_num_to_qop() argument
206 if (!qop) in __gss_num_to_qop()
208 *qop = NULL; in __gss_num_to_qop()
211 *qop = Q_DEFAULT; in __gss_num_to_qop()
224 *qop = qop_num_pairs[i].qop; in __gss_num_to_qop()
259 qops[cnt++] = qop_num_pairs[i].qop; in __gss_get_mech_info()