/src/sys/arch/alpha/alpha/ |
dec_alphabook1.c | 83 struct lca_config *lcp; local in function:dec_alphabook1_cons_init 86 lcp = &lca_configuration; 87 lca_init(lcp); 89 pci_consinit(&lcp->lc_pc, &lcp->lc_iot, &lcp->lc_memt, 90 &lcp->lc_iot, &lcp->lc_memt);
|
dec_eb66.c | 83 struct lca_config *lcp; local in function:dec_eb66_cons_init 86 lcp = &lca_configuration; 87 lca_init(lcp); 89 pci_consinit(&lcp->lc_pc, &lcp->lc_iot, &lcp->lc_memt, 90 &lcp->lc_iot, &lcp->lc_memt);
|
dec_axppci_33.c | 86 struct lca_config *lcp; local in function:dec_axppci_33_init 104 lcp = lca_preinit(); 105 iot = &lcp->lc_iot; 129 struct lca_config *lcp; local in function:dec_axppci_33_cons_init 131 lcp = lca_preinit(); 133 pci_consinit(&lcp->lc_pc, &lcp->lc_iot, &lcp->lc_memt, 134 &lcp->lc_iot, &lcp->lc_memt) [all...] |
/src/sys/arch/alpha/pci/ |
lca_pci.c | 78 struct lca_config *lcp = cpv; local in function:lca_conf_read 89 pci_decompose_tag(&lcp->lc_pc, tag, &secondary, &d, &f); 127 struct lca_config *lcp = cpv; local in function:lca_conf_write 138 pci_decompose_tag(&lcp->lc_pc, tag, &secondary, &d, &f);
|
lca.c | 151 lca_init(struct lca_config *lcp) 160 lcp->lc_s_mem_w2_masked_base = 0x80000000; 162 if (!lcp->lc_initted) { 164 lca_bus_io_init(&lcp->lc_iot, lcp); 165 lca_bus_mem_init(&lcp->lc_memt, lcp); 175 lca_pci_init(&lcp->lc_pc, lcp); 176 alpha_pci_chipset = &lcp->lc_pc 210 struct lca_config *lcp; local in function:lcaattach 255 struct lca_config *lcp = &lca_configuration; local in function:lca_bus_get_window [all...] |
lca_dma.c | 95 lca_dma_init(struct lca_config *lcp) 102 t = &lcp->lc_dmat_direct; 103 t->_cookie = lcp; 128 t = &lcp->lc_dmat_sgmap; 129 t->_cookie = lcp; 134 t->_sgmap = &lcp->lc_sgmap; 164 alpha_sgmap_init(t, &lcp->lc_sgmap, "lca_sgmap", 177 if ((lcp->lc_sgmap.aps_ptpa & IOC_W_T_BASE) != 178 lcp->lc_sgmap.aps_ptpa) 180 REGVAL64(LCA_IOC_W_T_BASE0) = lcp->lc_sgmap.aps_ptpa 197 struct lca_config *lcp = t->_cookie; local in function:lca_dma_get_tag [all...] |
/src/sbin/pppoectl/ |
pppoectl.c | 90 static struct sppplcpcfg lcp; variable in typeref:struct:sppplcpcfg 209 memset(&lcp, 0, sizeof lcp); 210 strncpy(lcp.ifname, ifname, sizeof lcp.ifname); 254 if (ioctl(s, SPPPGETLCPCFG, &lcp) == -1) 267 print_vals(ifname, status.phase, &spr, lcp.lcp_timeout, 312 if (ioctl(s, SPPPSETLCPCFG, &lcp) == -1) 367 print_vals(ifname, status.phase, &spr, lcp.lcp_timeout, 479 else if (startswith(arg, "lcp-timeout=")) [all...] |
/src/sys/kern/ |
kern_lwp.c | 1931 lcpage_t *lcp; local in function:lwp_ctl_alloc 1943 lcp = l->l_lcpage; 1944 *uaddr = lcp->lcp_uaddr + (vaddr_t)l->l_lwpctl - lcp->lcp_kaddr; 1991 TAILQ_FOREACH(lcp, &lp->lp_pages, lcp_chain) { 1992 if (lcp->lcp_nfree != 0) 1995 if (lcp == NULL) { 2001 lcp = kmem_alloc(LWPCTL_LCPAGE_SZ, KM_SLEEP); 2009 lcp->lcp_kaddr = vm_map_min(kernel_map); 2010 error = uvm_map(kernel_map, &lcp->lcp_kaddr, PAGE_SIZE 2066 lcpage_t *lcp; local in function:lwp_ctl_free 2102 lcpage_t *lcp, *next; local in function:lwp_ctl_exit [all...] |
/src/sys/net/ |
if_spppvar.h | 46 u_long opts; /* LCP options to send (bitfield) */ 171 struct slcp lcp; /* LCP params */ member in struct:sppp
|
if_spppsubr.c | 120 #define SPPP_LCPOPT_NAMELEN 5 /* buf size of lcp option name */ 132 * -link1 will cause the administrative open of the LCP layer. 144 * being one of "lcp", "ipcp", "cisco", "chap", "pap", etc. 267 #define CP_LCP 0x01 /* this is the LCP */ 499 static const struct cp lcp = { variable in typeref:typename:const struct cp 500 PPP_LCP, IDX_LCP, CP_LCP, "lcp", 557 &lcp, /* IDX_LCP */ 713 sppp_cp_input(&lcp, sp, m); 844 * to start LCP for it. 1133 sppp_cp_fini(&lcp, sp) [all...] |
/src/sys/arch/sparc64/dev/ |
lom.c | 481 struct lom_cmd *lcp; local in function:lom_dequeue_cmd 484 TAILQ_FOREACH(lcp, &sc->sc_queue, lc_next) { 485 if (lcp == lc) { 604 struct lom_cmd *lcp; local in function:lom1_queue_cmd 607 TAILQ_FOREACH(lcp, &sc->sc_queue, lc_next) { 608 if (lcp == lc) { 830 struct lom_cmd *lcp; local in function:lom2_queue_cmd 834 TAILQ_FOREACH(lcp, &sc->sc_queue, lc_next) { 835 if (lcp == lc) {
|