Searched refs:inheritedChannel (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DNullTest.java37 // test the assertion that SelectorProvider.inheritedChannel()
38 // and System.inheritedChannel return null when standard input
43 c1 = SelectorProvider.provider().inheritedChannel();
44 c2 = System.inheritedChannel();
H A DClosedStreams.java27 * @summary Calling inheritedChannel() after FileDescriptor.in was closed
44 if (System.inheritedChannel() != null) {
H A DStateTestService.java27 * A test service for use in the inetd/System.inheritedChannel unit
75 c = System.inheritedChannel();
H A DEchoService.java50 * each UDP packet to the configured port. System.inheritedChannel()
140 Channel c = System.inheritedChannel();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DPollSelectorProvider.java39 public Channel inheritedChannel() throws IOException { method in class:PollSelectorProvider
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DDevPollSelectorProvider.java39 public Channel inheritedChannel() throws IOException { method in class:DevPollSelectorProvider
H A DEPollSelectorProvider.java39 public Channel inheritedChannel() throws IOException { method in class:EPollSelectorProvider
H A DEventPortSelectorProvider.java39 public Channel inheritedChannel() throws IOException { method in class:EventPortSelectorProvider
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DSelectorProvider.java55 * used by the {@link java.lang.System#inheritedChannel System.inheritedChannel()}
294 * {@link RuntimePermission}<tt>("inheritedChannel")</tt>
298 public Channel inheritedChannel() throws IOException { method in class:SelectorProvider
/openjdk7/jdk/test/java/rmi/activation/rmidViaInheritedChannel/
H A DInheritedChannelNotServerSocket.java164 public synchronized Channel inheritedChannel() throws IOException { method in class:InheritedChannelNotServerSocket.SP
165 System.err.println("SP.inheritedChannel");
H A DRmidViaInheritedChannel.java160 public synchronized Channel inheritedChannel() throws IOException { method in class:RmidViaInheritedChannel.RmidSelectorProvider
161 System.err.println("RmidSelectorProvider.inheritedChannel");
/openjdk7/jdk/src/share/classes/java/lang/
H A DSystem.java222 * {@link java.nio.channels.spi.SelectorProvider#inheritedChannel
223 * inheritedChannel} method of the system-wide default
227 * {@link java.nio.channels.spi.SelectorProvider#inheritedChannel
228 * inheritedChannel}, this method may return other kinds of
242 public static Channel inheritedChannel() throws IOException { method in class:System
243 return SelectorProvider.provider().inheritedChannel();
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java1927 Channel inheritedChannel = AccessController.doPrivileged(
1930 return System.inheritedChannel();
1934 if (inheritedChannel != null &&
1935 inheritedChannel instanceof ServerSocketChannel)
1953 ((ServerSocketChannel) inheritedChannel).socket();
1960 ": " + inheritedChannel);
2178 * ServerSocketChannel returned from the 'System.inheritedChannel'

Completed in 995 milliseconds