| /src/usr.bin/mail/ |
| vars.c | 155 struct grouphead *gh; local 157 for (gh = groups[hash(name)]; gh != NULL; gh = gh->g_link) 158 if (*gh->g_name == *name && equal(gh->g_name, name)) 159 return gh; 169 struct grouphead *gh; local 172 if ((gh = findgroup(name)) == NULL) [all...] |
| cmd4.c | 158 struct grouphead *gh; local 161 if ((gh = findgroup(sname)) != NULL) { 162 np = gexpand(NULL, gh, 0, ntype);
|
| names.c | 425 gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype) 438 for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) { 442 if (strcmp(cp, gh->g_name) == 0) 454 if (gp == gh->g_list && gp->ge_link == NULL) 476 struct grouphead *gh; local 489 gh = findgroup(np->n_name); 491 if (gh != NULL) 492 new = gexpand(new, gh, metoo, np->n_type);
|
| cmd3.c | 811 struct grouphead *gh; local 820 for (gh = groups[h]; gh != NULL; gh = gh->g_link) 824 for (gh = groups[h]; gh != NULL; gh = gh->g_link) 825 *p++ = gh->g_name 868 struct grouphead *gh, *p; local [all...] |
| complete.c | 588 struct grouphead *gh; local 602 for (gh = groups[h]; gh != NULL; gh = gh->g_link) 609 for (gh = groups[h]; gh != NULL; gh = gh->g_link) 610 *p++ = gh->g_name 632 struct grouphead *gh; local [all...] |
| /src/sys/arch/arm/xscale/ |
| pxa2x0_gpio.c | 255 struct gpio_irq_handler *gh; local 283 gh = kmem_alloc(sizeof(*gh), KM_SLEEP); 284 gh->gh_func = func; 285 gh->gh_arg = arg; 286 gh->gh_spl = spl; 287 gh->gh_gpio = gpio; 288 gh->gh_level = level; 289 gh->gh_next = sc->sc_handlers[gpio]; 290 sc->sc_handlers[gpio] = gh; 334 struct gpio_irq_handler *gh = cookie; local 411 struct gpio_irq_handler **ghp, *gh; local 661 struct gpio_irq_handler *gh = (struct gpio_irq_handler *)v; local 672 struct gpio_irq_handler *gh = (struct gpio_irq_handler *)v; local [all...] |
| /src/sys/net/ |
| if_gre.c | 378 struct gre_h gh; local 400 if (__predict_false(m->m_len < sizeof(gh))) { 401 if ((m = m_pullup(m, sizeof(gh))) == NULL) { 407 memcpy(&gh, mtod(m, void *), sizeof(gh)); 409 if (gre_input(sc, m, &gh) == 0) { 787 gre_input(struct gre_softc *sc, struct mbuf *m, const struct gre_h *gh) 799 flags = ntohs(gh->flags); 814 switch (ntohs(gh->ptype)) { /* ethertypes */ 841 ntohs(gh->ptype)) 874 struct gre_h gh = { .flags = 0 }; local 934 memcpy(mtod(m, void *), &gh, sizeof(gh)); local [all...] |
| /src/external/bsd/tcpdump/dist/ |
| print-juniper.c | 482 const struct juniper_ggsn_header *gh; local 494 gh = (struct juniper_ggsn_header *)&l2info.cookie; 497 proto = EXTRACT_U_1(gh->proto); 502 EXTRACT_BE_U_2(gh->vlan_id));
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_dataset.c | 2722 idmap_get_handle_t *gh = NULL; local 2724 stat = idmap_get_create(&gh); 2726 idmap_get_destroy(gh); 2735 stat = idmap_get_sidbyuid(gh, pid, flag, &numericsid, 2741 stat = idmap_get_sidbygid(gh, pid, flag, &numericsid, 2745 idmap_get_destroy(gh); 2748 stat = idmap_get_mappings(gh); 2749 idmap_get_destroy(gh);
|