/src/sys/arch/mips/ralink/ |
ralink_ehci.c | 142 int ncomp = 0; local in function:ralink_ehci_attach 147 sc->sc_ehci.sc_comps[ncomp++] = ruh->usb; 148 if (ncomp >= EHCI_COMPANION_MAX) 151 sc->sc_ehci.sc_ncomp = ncomp;
|
/src/sys/arch/i386/pci/ |
gcscehci.c | 102 int ncomp; local in function:gcscehci_attach 155 ncomp = 0; 160 sc->sc.sc_comps[ncomp++] = up->usb; 161 if (ncomp >= EHCI_COMPANION_MAX) 165 sc->sc.sc_ncomp = ncomp;
|
/src/usr.sbin/puffs/mount_9p/ |
fs.c | 76 int rv, done, x = 1, ncomp; local in function:p9p_handshake 139 for (ncomp = 0; p && *p; ncomp++) { 146 if (ncomp == 0) { 158 p9pbuf_put_2(pb, ncomp); 185 if (walked != ncomp) 187 "components found", path, walked, ncomp);
|
/src/sys/dev/cardbus/ |
ehci_cardbus.c | 132 u_int ncomp; local in function:ehci_cardbus_attach 177 ncomp = 0; 183 sc->sc.sc_comps[ncomp++] = up->usb; 184 if (ncomp >= EHCI_COMPANION_MAX) 188 sc->sc.sc_ncomp = ncomp;
|
/src/sys/dev/acpi/ |
ehci_acpi.c | 193 int ncomp = 0; local in function:ehci_acpi_port_has_companion 229 ncomp = 1; 233 if (ncomp != 0) { 240 return ncomp; 249 int ncomp = 0; local in function:ehci_acpi_num_companion_ports 255 ncomp += ehci_acpi_port_has_companion(ad, val); 259 return ncomp; 268 int ncomp = 0; local in function:ehci_acpi_num_companions 277 ncomp = ehci_acpi_num_companion_ports(ad); 282 return ncomp; [all...] |
/src/sys/dev/pci/ |
ehci_pci.c | 126 int ncomp, quirk; local in function:ehci_pci_attach 245 ncomp = 0; 252 sc->sc.sc_comps[ncomp++] = up->usb; 254 if (ncomp == maxncomp) 258 sc->sc.sc_ncomp = ncomp;
|
/src/usr.sbin/acpitools/acpidump/ |
acpi.c | 2153 ACPI_IORT_NAMED_COMPONENT *ncomp local in function:acpi_print_iort_named_component 2158 (ncomp->NodeFlags & ACPI_IORT_NC_PASID_BITS) >> 1); 2160 PRINTFLAG(ncomp->NodeFlags, STALL_SUPPORTED); 2164 (ACPI_IORT_MEMORY_ACCESS *)&ncomp->MemoryProperties); 2165 printf("\tMemory address size=%hhu\n", ncomp->MemoryAddressLimit); 2166 printf("\tDevice object Name=%s\n", ncomp->DeviceName);
|
/src/sys/dev/usb/ |
ehci.c | 413 u_int ncomp; local in function:ehci_init 444 ncomp = EHCI_HCS_N_CC(hcsparams); 445 if (ncomp != sc->sc_ncomp) { 447 device_xname(sc->sc_dev), ncomp, sc->sc_ncomp); 452 if (ncomp < sc->sc_ncomp) 453 sc->sc_ncomp = ncomp;
|