Searched refs:oldstate (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/sys/geom/vinum/
H A Dgeom_vinum_state.c125 int oldstate; local
129 oldstate = d->state;
131 if (newstate == oldstate)
141 if (d->state != oldstate) {
158 int oldstate, status; local
162 oldstate = s->state;
167 if (newstate == oldstate)
285 int oldstate, plexdown; local
289 oldstate = p->state;
293 if (newstate == oldstate)
339 int oldstate; local
378 int oldstate; local
417 int oldstate; local
[all...]
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_cancel.c78 _pthread_setcancelstate(int state, int *oldstate) argument
97 if (oldstate) {
98 *oldstate = oldval ? PTHREAD_CANCEL_ENABLE :
/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_cancel.c180 _pthread_setcancelstate(int state, int *oldstate) argument
213 if (ret == 0 && oldstate != NULL)
214 *oldstate = ostate;
/freebsd-10.0-release/sys/kern/
H A Dkern_umtx.c2705 int32_t state, oldstate; local
2730 oldstate = casuword32(&rwlock->rw_state, state, state + 1);
2731 if (oldstate == -1) {
2735 if (oldstate == state) {
2742 state = oldstate;
2761 oldstate = casuword32(&rwlock->rw_state, state, state | URWLOCK_READ_WAITERS);
2762 if (oldstate == -1) {
2766 if (oldstate == state)
2768 state = oldstate;
2818 oldstate
2851 int32_t state, oldstate; local
3001 int32_t state, oldstate; local
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/base/
H A Dlib_mouse.c227 int oldstate = 0; local
257 if ((mouev.fs ^ oldstate) & MOUSE_BN1_DOWN)
260 if ((mouev.fs ^ oldstate) & MOUSE_BN2_DOWN)
263 if ((mouev.fs ^ oldstate) & MOUSE_BN3_DOWN)
268 oldstate = mouev.fs;
/freebsd-10.0-release/usr.sbin/kgmon/
H A Dkgmon.c315 int mib[3], oldstate; local
322 if (sysctl(mib, 3, &oldstate, &sz, NULL, 0) < 0)
324 if (oldstate == state)
/freebsd-10.0-release/sys/dev/pci/
H A Dpci.c2311 int result, oldstate, highest, delay; local
2321 oldstate = pci_get_powerstate(child);
2322 if (oldstate == state)
2337 highest = (oldstate > state) ? oldstate : state;
2369 pci_printf(cfg, "Transition from D%d to D%d\n", oldstate,
/freebsd-10.0-release/sys/dev/firewire/
H A Dfirewire.c1956 int i, len, oldstate; local
2007 oldstate = rb->xfer->flag;
2009 switch (oldstate) {

Completed in 244 milliseconds