Lines Matching full:gh
443 struct grouphead *gh; in group() local
450 for (gh = groups[h]; gh != NULL; gh = gh->g_link) in group()
454 for (gh = groups[h]; gh != NULL; gh = gh->g_link) in group()
455 *p++ = gh->g_name; in group()
468 if ((gh = findgroup(gname)) == NULL) { in group()
469 if ((gh = calloc(1, sizeof(*gh))) == NULL) in group()
471 gh->g_name = vcopy(gname); in group()
472 gh->g_list = NULL; in group()
473 gh->g_link = groups[h]; in group()
474 groups[h] = gh; in group()
487 gp->ge_link = gh->g_list; in group()
488 gh->g_list = gp; in group()