/src/usr.sbin/apmd/ |
apm-proto.h | 52 enum apm_state newstate; member in struct:apm_reply
|
/src/sys/dev/acpi/ |
acpi_apm.c | 150 int newstate, error, *ref, cap, oldcap; local in function:sysctl_state 161 newstate = *ref; 163 node.sysctl_data = &newstate; 168 if (newstate < ACPI_APM_STATE_MIN || newstate > ACPI_APM_STATE_MAX) 171 *ref = newstate; 173 capabilities = newstate != 0 ? oldcap | cap : oldcap & ~cap;
|
/src/sys/dev/i2c/ |
pcf8574.c | 380 uint32_t newstate; local in function:pcf8574_set_led 382 newstate = sc->sc_state & ~l->mask; 383 newstate |= val ? l->v_on : l->v_off; 385 device_xname(sc->sc_dev), sc->sc_state, newstate, l->mask, l->v_on, l->v_off); 386 if (newstate != sc->sc_state) { 387 pcf8574_write(sc, newstate | sc->sc_mask);
|
pcagpio.c | 295 uint32_t newstate; local in function:pcagpio_set 297 newstate = sc->sc_state & ~l->mask; 298 newstate |= val ? l->v_on : l->v_off; 300 sc->sc_state, newstate, l->mask, l->v_on, l->v_off); 301 if (newstate != sc->sc_state) 302 pcagpio_writereg(sc, PCAGPIO_OUTPUT, newstate);
|
/src/sys/dev/wscons/ |
wsemul_sun.c | 223 u_int newstate = SUN_EMUL_STATE_NORMAL; local in function:wsemul_sun_output_normal 268 newstate = SUN_EMUL_STATE_HAVEESC; 316 return (newstate); 322 u_int newstate; local in function:wsemul_sun_output_haveesc 327 newstate = SUN_EMUL_STATE_CONTROL; 333 newstate = wsemul_sun_output_normal(edp, c, 0); 337 return (newstate); 465 u_int newstate = SUN_EMUL_STATE_CONTROL; local in function:wsemul_sun_output_control 482 newstate = SUN_EMUL_STATE_NORMAL; 485 return (newstate); 492 u_int newstate; local in function:wsemul_sun_output [all...] |
/src/games/atc/ |
input.c | 251 int newstate, newpos; local in function:push 258 newstate = st[T_STATE].rule[ruleno].to_state; 266 T_STATE = newstate;
|
/src/sys/arch/sun3/dev/ |
xy.c | 542 int err, spt, mb, blk, lcv, fullmode, newstate; local in function:xy_init 546 newstate = XY_DRIVE_UNKNOWN; 598 newstate = XY_DRIVE_NOLABEL; 656 newstate = XY_DRIVE_ONLINE; 696 xy->state = newstate;
|
xd.c | 604 int rqno, err, spt, mb, blk, lcv, fullmode, newstate; local in function:xd_init 608 newstate = XD_DRIVE_UNKNOWN; 684 newstate = XD_DRIVE_NOLABEL; 710 newstate = XD_DRIVE_ONLINE; 749 xd->state = newstate;
|
/src/sys/netinet6/ |
nd6.c | 1337 int newstate = 0; local in function:nd6_cache_lladdr 1408 newstate = ND_LLINFO_STALE; 1414 newstate = ND_LLINFO_NOSTATE; 1416 newstate = ND_LLINFO_STALE; 1423 ln->ln_state = newstate;
|
/src/sys/dev/vme/ |
xy.c | 613 int spt, mb, blk, lcv, fmode, s = 0, newstate; local in function:xyattach 664 newstate = XY_DRIVE_UNKNOWN; 720 newstate = XY_DRIVE_NOLABEL; 775 newstate = XY_DRIVE_ONLINE; 820 xy->state = newstate;
|
xd.c | 714 int rqno, spt = 0, mb, blk, lcv, fmode, s = 0, newstate; local in function:xdattach 759 newstate = XD_DRIVE_UNKNOWN; 836 newstate = XD_DRIVE_NOLABEL; 863 newstate = XD_DRIVE_ONLINE; 906 xd->state = newstate;
|
/src/sys/dev/ic/ |
bwfmvar.h | 203 struct bwfm_cmd_newstate newstate; member in union:bwfm_task::__anonb536064f020a 207 #define t_newstate t_u.newstate
|
/src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
vchiq_core.c | 167 vchiq_set_service_state(VCHIQ_SERVICE_T *service, int newstate) 172 srvstate_names[newstate]); 173 service->srvstate = newstate; 417 vchiq_set_conn_state(VCHIQ_STATE_T *state, VCHIQ_CONNSTATE_T newstate) 423 conn_state_names[newstate]); 424 state->conn_state = newstate; 425 vchiq_platform_conn_state_changed(state, oldstate, newstate); 2839 int newstate; local in function:close_service_complete 2849 newstate = VCHIQ_SRVSTATE_LISTENING; 2851 newstate = VCHIQ_SRVSTATE_CLOSEWAIT [all...] |