Searched defs:ST_KILLED (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSinkChannelImpl.java64 private static final int ST_KILLED = 1; field in class:SinkChannelImpl
87 if (state != ST_KILLED)
99 if (state == ST_KILLED)
102 state = ST_KILLED;
107 state = ST_KILLED;
H A DSourceChannelImpl.java64 private static final int ST_KILLED = 1; field in class:SourceChannelImpl
87 if (state != ST_KILLED)
99 if (state == ST_KILLED)
102 state = ST_KILLED;
107 state = ST_KILLED;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DServerSocketChannelImpl.java71 private static final int ST_KILLED = 1; field in class:ServerSocketChannelImpl
279 if (state != ST_KILLED)
291 if (state == ST_KILLED)
294 state = ST_KILLED;
299 state = ST_KILLED;
H A DSocketChannelImpl.java82 private static final int ST_KILLED = 4; field in class:SocketChannelImpl
855 if (state != ST_KILLED)
885 if (state == ST_KILLED)
888 state = ST_KILLED;
898 state = ST_KILLED;
H A DDatagramChannelImpl.java85 private static final int ST_KILLED = 2; field in class:DatagramChannelImpl
998 if (state != ST_KILLED)
1018 if (state == ST_KILLED)
1021 state = ST_KILLED;
1026 state = ST_KILLED;

Completed in 29 milliseconds