| /src/sys/arch/hpcmips/vr/ | 
| vrledvar.h | 41 	vrled_status sc_next;  member in struct:vrled_softc 
 | 
| vrled.c | 170 	sc->sc_next = LEDOFF; 186 	sc->sc_next = LEDON;
 199 	switch (sc->sc_next) {
 219 	sc->sc_state = sc->sc_next;
 232 	switch (sc->sc_next) {
 259 	sc->sc_state = sc->sc_next;
 260 	sc->sc_next = LEDOFF;
 272 	switch (sc->sc_next) {
 307 		if (sc->sc_next == state)
 309 		switch (sc->sc_next) {
 [all...]
 | 
| /src/sys/dev/bluetooth/ | 
| bthidev.h | 58 	LIST_ENTRY(bthidev)	 sc_next; 
 | 
| bthidev.c | 333 			LIST_INSERT_HEAD(&sc->sc_list, hidev, sc_next); 406 		LIST_REMOVE(hidev, sc_next);
 646 		LIST_FOREACH(hidev, &sc->sc_list, sc_next)
 
 | 
| /src/sys/dev/fdt/ | 
| fdt_syscon.c | 47 	LIST_ENTRY(fdtbus_syscon) sc_next; 64 	LIST_INSERT_HEAD(&fdtbus_syscons, sc, sc_next);
 74 	LIST_FOREACH(sc, &fdtbus_syscons, sc_next) {
 
 | 
| /src/lib/libc/rpc/ | 
| svc.c | 112 	struct svc_callout *sc_next;  member in struct:svc_callout 308 	s->sc_next = svc_head;
 336 			svc_head = s->sc_next;
 338 			prev->sc_next = s->sc_next;
 340 		s->sc_next = NULL;
 379 	s->sc_next = svc_head;
 402 		svc_head = s->sc_next;
 404 		prev->sc_next = s->sc_next;
 [all...]
 | 
| /src/sys/arch/x86/include/ | 
| i82093var.h | 51 	struct ioapic_softc	*sc_next;  member in struct:ioapic_softc 
 | 
| /src/sys/dev/gpio/ | 
| gpiovar.h | 93 	LIST_ENTRY(gpio_dev)	sc_next; 
 | 
| gpio.c | 185 	LIST_FOREACH(gdev, &sc->sc_devs, sc_next) 187 			LIST_REMOVE(gdev, sc_next);
 911 				LIST_INSERT_HEAD(&sc->sc_devs, gdev, sc_next);
 1161 		LIST_FOREACH(gdev, &sc->sc_devs, sc_next) {
 
 | 
| /src/sys/arch/x86/x86/ | 
| ioapic.c | 197 	for (sc = ioapics; sc != NULL; sc = sc->sc_next) 213 	for (sc = ioapics; sc != NULL; sc = sc->sc_next) {
 227 	sc->sc_next = NULL;
 229 	for (scp = &ioapics; *scp != NULL; scp = &(*scp)->sc_next)
 487 	for (sc = ioapics; sc != NULL; sc = sc->sc_next) {
 593 	for (sc = ioapics; sc != NULL; sc = sc->sc_next) {
 609 	for (sc = ioapics; sc != NULL; sc = sc->sc_next) {
 
 | 
| lapic.c | 336 		for (ioapic = ioapics; ioapic != NULL; ioapic = ioapic->sc_next) { 
 | 
| mpbios.c | 809 					     sc = sc->sc_next) { 
 | 
| /src/usr.bin/rdist/ | 
| gram.y | 135 				last_sc->sc_next = $2; 499 	freesubcmd(cmd->sc_next);
 516 	sc->sc_next = NULL;
 
 | 
| defs.h | 113 	struct	subcmd *sc_next;  member in struct:subcmd 
 | 
| docmd.c | 174 		for (sc = cmds; sc != NULL; sc = sc->sc_next) { 192 	for (sc = cmds; sc != NULL; sc = sc->sc_next)
 425 	for (sc = cmds; sc != NULL; sc = sc->sc_next)
 631 	for (sc = subcmds; sc != NULL; sc = sc->sc_next) {
 
 | 
| server.c | 548 	for (sc = subcmds; sc != NULL; sc = sc->sc_next) { 
 |