HomeSort by: relevance | last modified time | path
    Searched defs:gh (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.bin/mail/
vars.c 155 struct grouphead *gh; local in function:findgroup
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 in function:printgroup
172 if ((gh = findgroup(name)) == NULL)
    [all...]
cmd4.c 158 struct grouphead *gh; local in function:name_expand
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 in function:usermap
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 in function:group
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 in function:delgroup
    [all...]
complete.c 588 struct grouphead *gh; local in function:complete_alias
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 in function:complete_smopts
    [all...]
  /src/sys/arch/arm/xscale/
pxa2x0_gpio.c 255 struct gpio_irq_handler *gh; local in function:pxa2x0_gpio_intr_establish
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 in function:pxa2x0_gpio_intr_disestablish
411 struct gpio_irq_handler **ghp, *gh; local in function:gpio_dispatch
661 struct gpio_irq_handler *gh = (struct gpio_irq_handler *)v; local in function:pxa2x0_gpio_intr_mask
672 struct gpio_irq_handler *gh = (struct gpio_irq_handler *)v; local in function:pxa2x0_gpio_intr_unmask
    [all...]
  /src/sys/net/
if_gre.c 378 struct gre_h gh; local in function:gre_receive
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 in function:gre_output
    [all...]

Completed in 14 milliseconds