Lines Matching refs:gl
318 struct grouplist *gl; in getnetgr_end() local
321 for (gl = be->all_members; gl != NULL; gl = next) { in getnetgr_end()
324 next = gl->gl_nxt; in getnetgr_end()
326 free(gl->triple[i]); in getnetgr_end()
328 free(gl); in getnetgr_end()
667 struct grouplist *gl; in save_triple() local
678 if ((gl = malloc(sizeof (*gl))) == NULL) { in save_triple()
686 gl->triple[i] = NULL; in save_triple()
687 } else if ((gl->triple[i] = strdup(trippp[i])) == NULL) { in save_triple()
692 free(gl->triple[j]); in save_triple()
694 free(gl); in save_triple()
699 gl->gl_nxt = *headp; in save_triple()
700 *headp = gl; in save_triple()