Lines Matching refs:gl
140 struct grouplist *gl; local
143 for (gl = be->all_members; gl != NULL; gl = next) {
146 next = gl->gl_nxt;
148 if (gl->triple[i] != 0) {
149 free(gl->triple[i]);
152 free(gl);
517 struct grouplist *gl; in save_triple() local
520 if ((gl = (struct grouplist *)malloc(sizeof (*gl))) == 0) { in save_triple()
528 gl->triple[i] = 0; in save_triple()
529 } else if ((gl->triple[i] = strdup(trippp[i])) == 0) { in save_triple()
534 if (gl->triple[j] != 0) { in save_triple()
535 free(gl->triple[j]); in save_triple()
542 gl->gl_nxt = *headp; in save_triple()
543 *headp = gl; in save_triple()