Lines Matching defs:State
848 enum State {
856 volatile State _state;
862 State switch_state(State from, State to) {
863 State result = (State) Atomic::cmpxchg((jint) to, (jint *) &_state, (jint) from);
874 State state() const { return _state; }
876 State request_suspend() {
880 State cancel_suspend() {
884 State suspended() {
888 State request_wakeup() {
892 State running() {