Searched refs:active (Results 51 - 75 of 227) sorted by relevance

12345678910

/freebsd-9.3-release/usr.sbin/rtsold/
H A Drtsold.h67 int active; /* interface status */ member in struct:ifinfo
/freebsd-9.3-release/contrib/ntp/kernel/sys/
H A Dbsd_audioirig.h72 u_short active; /* 0=inactive, else=active */ member in struct:auib
/freebsd-9.3-release/sbin/fdisk/
H A Dfdisk.c119 static int a_flag = 0; /* set active partition */
495 partp->dp_flag == ACTIVE ? " (active)" : "");
635 int active, i, new, tmp; local
637 active = -1;
641 printf("Partition %d is marked active\n", i + 1);
642 if (active == -1)
643 active = i + 1;
646 active = which;
647 else if (active == -1)
648 active
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c74 gv->active = AH_TRUE;
80 gv->active = AH_TRUE;
286 if (!gv->active || !ahp->ah_phyPowerOn)
/freebsd-9.3-release/usr.bin/m4/
H A Dmisc.c232 if (active == outfile[n])
233 m4errx(1, "undivert: diversion still active.");
236 putc(c, active);
378 fprintf(active, "#line %lu \"%s\"\n",
/freebsd-9.3-release/sbin/dhclient/
H A Ddispatch.c306 * the interface is not active.
313 goto active;
322 goto active;
329 goto active;
336 goto active;
346 active:
483 /* EINVAL -> link state unknown. treat as active */
/freebsd-9.3-release/sys/dev/ichwd/
H A Dichwd.c294 sc->active = 1;
308 sc->active = 0;
406 if (!sc->active)
413 if (sc->active)
596 if (sc->active)
/freebsd-9.3-release/usr.sbin/ppp/
H A Dlog.c94 prompt->active = 1;
101 prompt->active = 1;
118 if (prompt->active) {
119 prompt->active = 0;
526 if (!p->active)
/freebsd-9.3-release/sys/dev/bktr/
H A Dmsp34xx.c138 int active,restart,rmmod; member in struct:msp3400c
725 msp->active = 1;
729 msp->active = 0;
890 msp->active = 0;
895 msp->active = 0;
965 msp->active = 1;
969 msp->active = 0;
1117 msp->active = 0;
1122 msp->active = 0;
1241 if (msp->active)
[all...]
H A Dioctl_meteor.h115 #define METEOR_STATUS_SVP 0x0100 /* State of VRAM Port:inactive/active */
178 unsigned active; /* bit mask of active frame buffers member in struct:meteor_mem
180 int num_active_bufs; /* count of active frame buffer
/freebsd-9.3-release/crypto/openssl/ssl/
H A Dssl_ciph.c163 int active; member in struct:cipher_order_st
544 co_list[co_list_num].active = 0;
694 if (!curr->active) {
712 curr->active = 1;
718 if (curr->active) {
722 curr->active = 0;
730 curr->active = 0;
759 if (curr->active && (curr->cipher->strength_bits > max_strength_bits))
776 if (curr->active)
1071 if (curr->active
[all...]
/freebsd-9.3-release/sys/dev/sound/pci/
H A Dmaestro3.c114 u_int32_t active; member in struct:sc_pchinfo
128 u_int32_t active; member in struct:sc_rchinfo
408 idx = sc->pch_cnt; /* dac instance number, no active reuse! */
626 ret += sc->pch[i].active;
629 ret += sc->rch[i].active;
653 if (ch->active) {
656 ch->active = 1;
676 if (ch->active == 0) {
679 ch->active = 0;
788 idx = sc->rch_cnt; /* adc instance number, no active reus
[all...]
H A Dcsapcm.c70 int active; member in struct:csa_info
126 old = csa->active;
127 csa->active += run;
129 if ((csa->active > 1) || (csa->active < -1))
130 csa->active = 0;
131 if (csa->card->active)
132 return (csa->card->active(!(csa->active && old)));
793 csa->active
[all...]
H A Dneomagic.c54 int active, spd, dir, fmt; member in struct:sc_chinfo
358 ch->active = 0;
422 ch->active = 1;
432 ch->active = 0;
438 ch->active = 1;
447 ch->active = 0;
754 if (sc->pch.active) {
759 if (sc->rch.active) {
789 if (sc->pch.active) {
795 if (sc->rch.active) {
[all...]
H A Dmaestro.c173 volatile u_int active; member in struct:agg_info
196 &powerstate_active, 0, "The Dx power state when active (0-1)");
921 ch->parent->active |= (1 << ch->num);
934 ch->parent->active &= ~(1 << ch->num);
941 if (ch->parent->active) {
1019 ch->parent->active |= (1 << ch->parent->playchns);
1046 ch->parent->active &= ~(1 << ch->parent->playchns);
1052 if (ch->parent->active) {
1219 if ((ess->active & (1 << i)) &&
1222 if ((ess->active
[all...]
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi_thermal.c92 int tz_active; /*Current active cooling*/
95 int tz_requested; /*Minimum active cooling*/
269 OID_AUTO, "active", CTLTYPE_INT | CTLFLAG_RW,
270 sc, 0, acpi_tz_active_sysctl, "I", "cooling is active");
446 acpi_tz_aclevel_string(int active) argument
448 if (active < -1 || active >= TZ_NUMLEVELS)
451 return (aclevel_string[active + 1]);
532 /* Handle user override of active mode */
546 /* If the active coolin
733 int active; local
[all...]
/freebsd-9.3-release/sys/powerpc/powermac/
H A Dfcu.c303 uint8_t active = 0, avail = 0, fail = 0; local
327 /* Check if fan is active. */
329 if (fcu_read_1(sc->sc_dev, sc->sc_addr, reg, &active) < 0)
331 if ((active & (1 << fan->id)) == 0) {
332 device_printf(fan->dev, "RPM Fan not active ID: %d\n",
390 uint8_t active = 0, avail = 0, fail = 0; local
412 /* Check if fan is active. */
414 if (fcu_read_1(sc->sc_dev, sc->sc_addr, reg, &active) < 0)
416 if ((active & (1 << fan->id)) == 0) {
417 device_printf(dev, "PWM Fan not active I
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dbuffer.c182 * Make 'r' refer to the active region of 'b'.
194 * Sets the end of the active region 'n' bytes after current.
255 if (b->active > b->current)
256 b->active -= b->current;
258 b->active = 0;
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Dintel_overlay.c180 int active; member in struct:intel_overlay
298 KASSERT(!overlay->active, ("Overlay is active"));
299 overlay->active = 1;
340 KASSERT(overlay->active, ("Overlay not active"));
394 overlay->active = 0;
406 KASSERT(overlay->active, ("Overlay is not active"));
784 if (!overlay->active) {
[all...]
/freebsd-9.3-release/sys/fs/coda/
H A Dcoda_vfsops.c212 int active, error = 0; local
234 active = coda_kill(vfsp, NOT_DOWNCALL);
237 printf("coda_unmount: active = %d, vflush active %d\n",
238 active, error);
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dbuffer.c182 * Make 'r' refer to the active region of 'b'.
194 * Sets the end of the active region 'n' bytes after current.
255 if (b->active > b->current)
256 b->active -= b->current;
258 b->active = 0;
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-hooks3.c175 reentrant state. The state gets reset to active for the main thread
233 __mf_set_state (active);
/freebsd-9.3-release/sys/net/
H A Dbridgestp.c160 if (bp->bp_hello_timer.active == 0) {
403 if (bp->bp_tc_timer.active)
982 (bp->bp_forward_delay_timer.active == 0 ||
984 bp->bp_recent_backup_timer.active == 0 &&
1004 if (bp->bp_recent_root_timer.active == 0 && bp->bp_reroot) {
1034 (bp->bp_forward_delay_timer.active == 0 || bp->bp_agreed ||
1036 (bp->bp_recent_root_timer.active == 0 || !bp->bp_reroot) &&
1054 (bp->bp_reroot && bp->bp_recent_root_timer.active) ||
1422 if (bp->bp_tc_timer.active)
1460 if (bp2->bp_recent_root_timer.active) {
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_attr.c1185 blk = &state->path.blk[ state->path.active-1 ];
1203 if (state->path.active == 1) {
1353 blk = &state->path.blk[ state->path.active-1 ];
1361 if (retval && (state->path.active > 1)) {
1453 blk = &state->path.blk[ state->path.active-1 ];
1489 blk = &state->path.blk[ state->path.active-1 ];
1497 if (retval && (state->path.active > 1)) {
1534 ASSERT(state->path.active == 1);
1601 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPT
[all...]
/freebsd-9.3-release/sys/i386/bios/
H A Dapm.c368 /* Not halting powering off, or not active */
369 if (!(howto & RB_POWEROFF) || !apm_softc.active)
677 aip->ai_status = (u_int)sc->active;
703 if (sc->active) {
719 if (!sc->active || sc->always_halt_cpu)
734 if (sc->slow_idle_cpu && sc->active) {
755 while (sc->active) {
784 sc->active = 1;
804 sc->active = 0;
1168 sc->active
[all...]

Completed in 174 milliseconds

12345678910