Lines Matching refs:gcb
1150 gid_cb_st gcb; in tls1_set_groups_list() local
1154 gcb.gidcnt = 0; in tls1_set_groups_list()
1155 gcb.gidmax = GROUPLIST_INCREMENT; in tls1_set_groups_list()
1156 gcb.gid_arr = OPENSSL_malloc(gcb.gidmax * sizeof(*gcb.gid_arr)); in tls1_set_groups_list()
1157 if (gcb.gid_arr == NULL) in tls1_set_groups_list()
1159 gcb.ctx = ctx; in tls1_set_groups_list()
1160 if (!CONF_parse_list(str, ':', 1, gid_cb, &gcb)) in tls1_set_groups_list()
1162 if (gcb.gidcnt == 0) { in tls1_set_groups_list()
1176 tmparr = OPENSSL_memdup(gcb.gid_arr, gcb.gidcnt * sizeof(*tmparr)); in tls1_set_groups_list()
1181 *pextlen = gcb.gidcnt; in tls1_set_groups_list()
1184 OPENSSL_free(gcb.gid_arr); in tls1_set_groups_list()