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

1234567

/freebsd-10.1-release/sys/ia64/include/
H A Dsignal.h71 unsigned long sc_flags; member in struct:sigcontext
/freebsd-10.1-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.1-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.c221 if (sc->sc_flags.clocks_off &&
222 sc->sc_flags.port_powered) {
229 sc->sc_flags.clocks_off = 0;
239 if (!sc->sc_flags.clocks_off) {
249 sc->sc_flags.clocks_off = 1;
258 if (!sc->sc_flags.d_pulled_up &&
259 sc->sc_flags.port_powered) {
260 sc->sc_flags.d_pulled_up = 1;
270 if (sc->sc_flags.d_pulled_up) {
271 sc->sc_flags
[all...]
H A Ddwc_otg.c382 if (sc->sc_flags.status_high_speed)
396 if (sc->sc_flags.clocks_off &&
397 sc->sc_flags.port_powered) {
403 sc->sc_flags.clocks_off = 0;
410 if (!sc->sc_flags.clocks_off) {
416 sc->sc_flags.clocks_off = 1;
427 if (!sc->sc_flags.d_pulled_up &&
428 sc->sc_flags.port_powered) {
429 sc->sc_flags.d_pulled_up = 1;
444 if (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.1-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,
477 (sc->sc_flags & UKBD_FLAG_GONE) == 0) {
482 if (sc->sc_flags & UKBD_FLAG_POLLING)
598 if ((sc->sc_flags & UKBD_FLAG_POLLING) != 0)
634 sc->sc_flags &= ~UKBD_FLAG_TIMER_RUNNING;
708 if ((sc->sc_flags & UKBD_FLAG_APPLE_EJECT) &&
715 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.1-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.1-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.1-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.1-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.1-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.1-release/sys/geom/eli/
H A Dg_eli.c319 if (!(sc->sc_flags & G_ELI_FLAG_AUTH)) {
355 if ((sc->sc_flags & G_ELI_FLAG_FIRST_KEY) != 0) {
361 if (sc->sc_flags & G_ELI_FLAG_AUTH) {
399 if ((sc->sc_flags & G_ELI_FLAG_FIRST_KEY) != 0)
433 if (!(sc->sc_flags & G_ELI_FLAG_SUSPEND))
483 if (sc->sc_flags & G_ELI_FLAG_DESTROY) {
494 while (sc->sc_flags & G_ELI_FLAG_SUSPEND) {
518 !(sc->sc_flags & G_ELI_FLAG_SUSPEND)) {
535 if (sc->sc_flags & G_ELI_FLAG_AUTH) {
547 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.1-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.1-release/sys/arm/broadcom/bcm2835/
H A Dbcm2835_bscvar.h51 uint8_t sc_flags; member in struct:bcm_bsc_softc
H A Dbcm2835_spivar.h55 uint32_t sc_flags; member in struct:bcm_spi_softc
/freebsd-10.1-release/sys/dev/tpm/
H A Dtpmvar.h44 int sc_flags; member in struct:tpm_softc
/freebsd-10.1-release/sys/geom/sched/
H A Dg_sched.h98 int sc_flags; /* Various flags. */ member in struct:g_sched_softc
/freebsd-10.1-release/sys/i386/bios/
H A Dapm.h50 int sc_flags; member in struct:apm_softc
/freebsd-10.1-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.1-release/sys/dev/amdtemp/
H A Damdtemp.c65 int sc_flags; member in struct:amdtemp_softc
273 sc->sc_flags |= AMDTEMP_FLAG_CS_SWAP;
284 sc->sc_flags |=
291 sc->sc_flags |=
295 sc->sc_flags |= AMDTEMP_FLAG_ALT_OFFSET;
297 sc->sc_flags |= AMDTEMP_FLAG_CT_10BIT;
521 if ((sc->sc_flags & AMDTEMP_FLAG_CS_SWAP) != 0)
529 if ((sc->sc_flags & AMDTEMP_FLAG_CS_SWAP) == 0)
535 mask = (sc->sc_flags & AMDTEMP_FLAG_CT_10BIT) != 0 ? 0x3ff : 0x3fc;
536 offset = (sc->sc_flags
[all...]
/freebsd-10.1-release/sys/netinet/
H A Dtcp_syncache.c653 if ((sc->sc_flags & SCF_UNREACH) == 0 || sc->sc_rxmits < 3 + 1) {
654 sc->sc_flags |= SCF_UNREACH;
861 if (sc->sc_flags & SCF_NOOPT)
864 if (sc->sc_flags & SCF_WINSCALE) {
869 if (sc->sc_flags & SCF_TIMESTAMP) {
876 if (sc->sc_flags & SCF_SIGNATURE)
879 if (sc->sc_flags & SCF_SACK)
883 if (sc->sc_flags & SCF_ECN)
1039 if (!(sc->sc_flags & SCF_TIMESTAMP) && (to->to_flags & TOF_TS)) {
1052 if ((sc->sc_flags
[all...]

Completed in 175 milliseconds

1234567