Searched refs:sc_flags (Results 1 - 25 of 161) sorted by relevance

1234567

/freebsd-10.0-release/sys/ia64/include/
H A Dsignal.h71 unsigned long sc_flags; member in struct:sigcontext
/freebsd-10.0-release/sys/dev/le/
H A Dlancevar.h111 int sc_flags; member in struct:lance_softc
132 #define LE_HTOLE16(v) (((sc)->sc_flags & LE_BSWAP) ? htole16(v) : (v))
133 #define LE_HTOLE32(v) (((sc)->sc_flags & LE_BSWAP) ? htole32(v) : (v))
134 #define LE_LE16TOH(v) (((sc)->sc_flags & LE_BSWAP) ? le16toh(v) : (v))
135 #define LE_LE32TOH(v) (((sc)->sc_flags & LE_BSWAP) ? le32toh(v) : (v))
/freebsd-10.0-release/sys/dev/usb/controller/
H A Datmegadci.c151 if (sc->sc_flags.clocks_off &&
152 sc->sc_flags.port_powered) {
164 sc->sc_flags.clocks_off = 0;
173 if (!sc->sc_flags.clocks_off) {
188 sc->sc_flags.clocks_off = 1;
197 if (!sc->sc_flags.d_pulled_up &&
198 sc->sc_flags.port_powered) {
199 sc->sc_flags.d_pulled_up = 1;
209 if (sc->sc_flags.d_pulled_up) {
210 sc->sc_flags
[all...]
H A Davr32dci.c197 if (sc->sc_flags.clocks_off &&
198 sc->sc_flags.port_powered) {
207 sc->sc_flags.clocks_off = 0;
214 if (!sc->sc_flags.clocks_off) {
223 sc->sc_flags.clocks_off = 1;
232 if (!sc->sc_flags.d_pulled_up &&
233 sc->sc_flags.port_powered) {
234 sc->sc_flags.d_pulled_up = 1;
244 if (sc->sc_flags.d_pulled_up) {
245 sc->sc_flags
[all...]
H A Dat91dci.c218 if (sc->sc_flags.clocks_off &&
219 sc->sc_flags.port_powered) {
226 sc->sc_flags.clocks_off = 0;
236 if (!sc->sc_flags.clocks_off) {
246 sc->sc_flags.clocks_off = 1;
255 if (!sc->sc_flags.d_pulled_up &&
256 sc->sc_flags.port_powered) {
257 sc->sc_flags.d_pulled_up = 1;
267 if (sc->sc_flags.d_pulled_up) {
268 sc->sc_flags
[all...]
H A Ddwc_otg.c319 if (sc->sc_flags.clocks_off &&
320 sc->sc_flags.port_powered) {
326 sc->sc_flags.clocks_off = 0;
333 if (!sc->sc_flags.clocks_off) {
339 sc->sc_flags.clocks_off = 1;
350 if (!sc->sc_flags.d_pulled_up &&
351 sc->sc_flags.port_powered) {
352 sc->sc_flags.d_pulled_up = 1;
367 if (sc->sc_flags.d_pulled_up) {
368 sc->sc_flags
[all...]
H A Duss820dci.c198 if (!sc->sc_flags.d_pulled_up &&
199 sc->sc_flags.port_powered) {
200 sc->sc_flags.d_pulled_up = 1;
217 if (sc->sc_flags.d_pulled_up) {
218 sc->sc_flags.d_pulled_up = 0;
231 if (!(sc->sc_flags.status_suspend)) {
776 sc->sc_flags.status_bus_reset = 1;
777 sc->sc_flags.status_suspend = 0;
778 sc->sc_flags.change_suspend = 0;
779 sc->sc_flags
[all...]
/freebsd-10.0-release/sys/dev/usb/input/
H A Dukbd.c176 uint32_t sc_flags; /* flags */ member in struct:ukbd_softc
392 sc->sc_flags |= UKBD_FLAG_TIMER_RUNNING;
422 KASSERT((sc->sc_flags & UKBD_FLAG_POLLING) != 0,
473 || (sc->sc_flags & UKBD_FLAG_POLLING) != 0,
481 if (sc->sc_flags & UKBD_FLAG_POLLING)
597 if ((sc->sc_flags & UKBD_FLAG_POLLING) != 0)
633 sc->sc_flags &= ~UKBD_FLAG_TIMER_RUNNING;
707 if ((sc->sc_flags & UKBD_FLAG_APPLE_EJECT) &&
714 if ((sc->sc_flags & UKBD_FLAG_APPLE_FN) &&
721 if ((sc->sc_flags
[all...]
H A Dums.c106 uint32_t sc_flags; member in struct:ums_info
231 if (sc->sc_info[0].sc_flags & UMS_FLAG_SBU) {
239 if ((info->sc_flags & UMS_FLAG_W_AXIS) &&
243 if ((info->sc_flags & UMS_FLAG_X_AXIS) &&
247 if ((info->sc_flags & UMS_FLAG_Y_AXIS) &&
251 if ((info->sc_flags & UMS_FLAG_Z_AXIS) &&
255 if (info->sc_flags & UMS_FLAG_REVZ)
260 if ((info->sc_flags & UMS_FLAG_T_AXIS) &&
314 if ((sc->sc_info[0].sc_flags & UMS_FLAG_SBU) &&
417 info->sc_flags |
[all...]
/freebsd-10.0-release/sys/x86/include/
H A Dsignal.h81 int sc_flags; member in struct:sigcontext
138 int sc_flags; member in struct:sigcontext
/freebsd-10.0-release/sys/mips/cavium/
H A Docteon_pci_console.c52 unsigned sc_flags; member in struct:opcic_softc
80 sc->sc_flags = 0;
91 sc->sc_flags |= OPCIC_FLAG_RSYS;
132 if ((sc->sc_flags & OPCIC_FLAG_RSYS) != 0)
154 if ((sc->sc_flags & OPCIC_FLAG_RSYS) != 0) {
/freebsd-10.0-release/sys/dev/uart/
H A Duart_kbd_sun.c80 int sc_flags; member in struct:sunkbd_softc
444 if (!(sc->sc_flags & KPCOMPOSE) && (sc->sc_composed_char > 0)) {
491 sc->sc_flags &= ~CTLS;
493 sc->sc_flags |= CTLS;
498 sc->sc_flags &= ~SHIFTS;
500 sc->sc_flags |= SHIFTS;
505 sc->sc_flags &= ~ALTS;
507 sc->sc_flags |= ALTS;
512 key = keycode2scancode(key, sc->sc_flags,
537 if (sc->sc_flags
[all...]
/freebsd-10.0-release/sys/geom/
H A Dgeom_ccd.c73 /* sc_flags */
133 int sc_flags; /* flags */ member in struct:ccd_s
223 if (cs->sc_flags & CCDF_LINUX) {
226 if (cs->sc_flags & CCDF_MIRROR && cs->sc_ndisks != 2)
230 if (cs->sc_flags & CCDF_NO_OFFSET)
281 if (cs->sc_flags & CCDF_UNIFORM) {
289 if (cs->sc_flags & CCDF_MIRROR) {
476 if (cs->sc_flags & CCDF_MIRROR) {
585 if (cs->sc_flags & CCDF_MIRROR) {
636 if (cs->sc_flags
[all...]
/freebsd-10.0-release/sys/powerpc/powermac/
H A Dkiic.c108 u_int sc_flags; member in struct:kiic_softc
309 sc->sc_flags |= I2C_SELECTED;
311 if (sc->sc_flags & I2C_READING) {
324 if (sc->sc_flags & I2C_READING) {
345 sc->sc_flags &= ~I2C_SELECTED;
367 if (sc->sc_flags & I2C_BUSY)
370 if (sc->sc_flags & I2C_BUSY) {
375 sc->sc_flags = I2C_BUSY;
396 sc->sc_flags = I2C_BUSY;
402 sc->sc_flags |
[all...]
/freebsd-10.0-release/sys/geom/eli/
H A Dg_eli.c301 if (!(sc->sc_flags & G_ELI_FLAG_AUTH)) {
337 if ((sc->sc_flags & G_ELI_FLAG_FIRST_KEY) != 0) {
343 if (sc->sc_flags & G_ELI_FLAG_AUTH) {
381 if ((sc->sc_flags & G_ELI_FLAG_FIRST_KEY) != 0)
415 if (!(sc->sc_flags & G_ELI_FLAG_SUSPEND))
465 if (sc->sc_flags & G_ELI_FLAG_DESTROY) {
476 while (sc->sc_flags & G_ELI_FLAG_SUSPEND) {
500 !(sc->sc_flags & G_ELI_FLAG_SUSPEND)) {
517 if (sc->sc_flags & G_ELI_FLAG_AUTH) {
529 if (sc->sc_flags
[all...]
H A Dg_eli_key_cache.c100 if ((sc->sc_flags & G_ELI_FLAG_ENC_IVKEY) != 0)
201 if ((sc->sc_flags & G_ELI_FLAG_AUTH) == 0)
211 if ((sc->sc_flags & G_ELI_FLAG_SINGLE_KEY) != 0) {
218 if ((sc->sc_flags & G_ELI_FLAG_AUTH) != 0) {
253 if ((sc->sc_flags & G_ELI_FLAG_SINGLE_KEY) != 0) {
277 if ((sc->sc_flags & G_ELI_FLAG_SINGLE_KEY) != 0)
335 if ((sc->sc_flags & G_ELI_FLAG_SINGLE_KEY) != 0)
/freebsd-10.0-release/sys/geom/raid3/
H A Dg_raid3_ctl.c59 if ((sc->sc_flags & G_RAID3_DEVICE_FLAG_DESTROY) != 0)
198 if ((sc->sc_flags & G_RAID3_DEVICE_FLAG_NOAUTOSYNC) != 0) {
200 sc->sc_flags &= ~G_RAID3_DEVICE_FLAG_NOAUTOSYNC;
205 sc->sc_flags |= G_RAID3_DEVICE_FLAG_NOAUTOSYNC;
207 if ((sc->sc_flags & G_RAID3_DEVICE_FLAG_NOFAILSYNC) != 0) {
209 sc->sc_flags &= ~G_RAID3_DEVICE_FLAG_NOFAILSYNC;
212 sc->sc_flags |= G_RAID3_DEVICE_FLAG_NOFAILSYNC;
216 if ((sc->sc_flags & G_RAID3_DEVICE_FLAG_VERIFY) != 0) {
218 sc->sc_flags &= ~G_RAID3_DEVICE_FLAG_VERIFY;
221 sc->sc_flags |
[all...]
/freebsd-10.0-release/sys/dev/tpm/
H A Dtpmvar.h44 int sc_flags; member in struct:tpm_softc
/freebsd-10.0-release/sys/geom/sched/
H A Dg_sched.h98 int sc_flags; /* Various flags. */ member in struct:g_sched_softc
/freebsd-10.0-release/sys/i386/bios/
H A Dapm.h50 int sc_flags; member in struct:apm_softc
/freebsd-10.0-release/sys/dev/usb/net/
H A Dif_axe.c384 sc->sc_flags &= ~AXE_FLAG_LINK;
390 sc->sc_flags |= AXE_FLAG_LINK;
393 if ((sc->sc_flags & AXE_FLAG_178) == 0)
395 sc->sc_flags |= AXE_FLAG_LINK;
403 if ((sc->sc_flags & AXE_FLAG_LINK) == 0)
420 if ((sc->sc_flags & AXE_FLAG_178) != 0)
803 if (sc->sc_flags & AXE_FLAG_178)
805 else if (sc->sc_flags & AXE_FLAG_772)
807 else if (sc->sc_flags & AXE_FLAG_772A)
809 else if (sc->sc_flags
[all...]
/freebsd-10.0-release/sys/dev/amdtemp/
H A Damdtemp.c65 int sc_flags; member in struct:amdtemp_softc
270 sc->sc_flags |= AMDTEMP_FLAG_CS_SWAP;
281 sc->sc_flags |=
288 sc->sc_flags |=
292 sc->sc_flags |= AMDTEMP_FLAG_ALT_OFFSET;
294 sc->sc_flags |= AMDTEMP_FLAG_CT_10BIT;
517 if ((sc->sc_flags & AMDTEMP_FLAG_CS_SWAP) != 0)
525 if ((sc->sc_flags & AMDTEMP_FLAG_CS_SWAP) == 0)
531 mask = (sc->sc_flags & AMDTEMP_FLAG_CT_10BIT) != 0 ? 0x3ff : 0x3fc;
532 offset = (sc->sc_flags
[all...]
/freebsd-10.0-release/sys/netinet/
H A Dtcp_syncache.c654 if ((sc->sc_flags & SCF_UNREACH) == 0 || sc->sc_rxmits < 3 + 1) {
655 sc->sc_flags |= SCF_UNREACH;
852 if (sc->sc_flags & SCF_NOOPT)
855 if (sc->sc_flags & SCF_WINSCALE) {
860 if (sc->sc_flags & SCF_TIMESTAMP) {
867 if (sc->sc_flags & SCF_SIGNATURE)
870 if (sc->sc_flags & SCF_SACK)
874 if (sc->sc_flags & SCF_ECN)
1030 if (!(sc->sc_flags & SCF_TIMESTAMP) && (to->to_flags & TOF_TS)) {
1043 if ((sc->sc_flags
[all...]
/freebsd-10.0-release/sys/dev/usb/storage/
H A Durio.c104 uint8_t sc_flags; member in struct:urio_softc
273 if (sc->sc_flags & URIO_FLAG_WRITE_STALL) {
289 sc->sc_flags |= URIO_FLAG_WRITE_STALL;
304 sc->sc_flags &= ~URIO_FLAG_WRITE_STALL;
325 if (sc->sc_flags & URIO_FLAG_READ_STALL) {
338 sc->sc_flags |= URIO_FLAG_READ_STALL;
353 sc->sc_flags &= ~URIO_FLAG_READ_STALL;
400 sc->sc_flags |= URIO_FLAG_READ_STALL;
411 sc->sc_flags |= URIO_FLAG_WRITE_STALL;
/freebsd-10.0-release/sys/dev/auxio/
H A Dauxio.c111 int sc_flags; member in struct:auxio_softc
179 if (sc->sc_flags & AUXIO_EBUS)
192 if (sc->sc_flags & AUXIO_EBUS)
247 sc->sc_flags = AUXIO_LEDONLY | AUXIO_EBUS;
320 sc->sc_flags = AUXIO_LEDONLY | AUXIO_SBUS;

Completed in 153 milliseconds

1234567