Searched defs:close (Results 151 - 175 of 582) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java79 * other threads that might be attempting to close the channel. </p>
105 * complete the close operation. </p>
110 public final void close() throws IOException { method in class:AbstractInterruptibleChannel
122 * <p> This method is invoked by the {@link #close close} method in order
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileSystem.java74 * {@link #close() close} method. Once closed, any further attempt to access
87 * #close close} method may be invoked at any time to close a file system but
90 * object in a file system, and another thread invokes the {@code close} method
122 * <p> Closing a file system will close all open {@link
134 public abstract void close() throws IOException; method in class:FileSystem
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DStreamHandler.java261 writer.close();
283 public synchronized void close() throws SecurityException { method in class:StreamHandler
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DDeflaterOutputStream.java236 public void close() throws IOException { method in class:DeflaterOutputStream
241 out.close();
H A DInflaterOutputStream.java57 /** true iff {@link #close()} has been called. */
125 public void close() throws IOException { method in class:InflaterOutputStream
131 out.close();
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileImageInputStream.java150 public void close() throws IOException { method in class:FileImageInputStream
151 super.close();
H A DFileImageOutputStream.java158 public void close() throws IOException { method in class:FileImageOutputStream
159 super.close();
H A DMemoryCacheImageOutputStream.java177 public void close() throws IOException { method in class:MemoryCacheImageOutputStream
181 super.close();
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnector.java78 * {@link #close} was called after <code>connect</code>, the new
182 * <p>If <code>close</code> has already been called successfully
184 * <code>close</code> has never been called, or if it was called
185 * but produced an exception, an attempt will be made to close the
187 * <code>close</code> will return normally, or it can generate an
191 * example, if the server has crashed, the close operation might
193 * not want to block in a close operation should do it in a
200 public void close() throws IOException; method in interface:JMXConnector
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelOscillatorStream.java47 public void close() throws IOException; method in interface:ModelOscillatorStream
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DOutputFile.java46 public void close(final PrintStream out) { method in class:OutputFile
47 out.close();
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/jar/
H A DJarFileFactory.java103 local_result.close();
119 * indicate that the JarFile is close. This way we can
122 public void close(JarFile jarFile) { method in class:JarFileFactory
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSocketDispatcher.java62 void close(FileDescriptor fd) throws IOException { method in class:SocketDispatcher
/openjdk7/jdk/test/java/io/StreamTokenizer/
H A DReadAhead.java91 public void close() { } method in class:ReadAhead.LimitedReader
/openjdk7/jdk/test/java/net/Socket/
H A DSocksConnectTimeout.java64 close(serverSocket);
85 close(socket);
102 close(client);
115 static void close(Closeable closeable) { method in class:SocksConnectTimeout
116 if (closeable != null) try { closeable.close(); } catch (IOException e) {unexpected(e);}
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DProxyTunnelServer.java70 ss.close();
73 System.out.println("ProxyServer close error: " + excep);
93 ss.close();
129 clientToServer.close();
130 serverToClient.close();
178 * we will close the tunnel
180 close();
184 public void close() { method in class:ProxyTunnelServer.ProxyTunnel
187 sockIn.close();
189 sockOut.close();
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DAppInputStream.java142 * Socket close is already synchronized, no need to block here.
144 public void close() throws IOException { method in class:AppInputStream
145 c.close();
H A DByteBufferInputStream.java153 public void close() throws IOException { method in class:ByteBufferInputStream
/openjdk7/jdk/test/javax/sound/midi/Gervill/DLSSoundbankReader/
H A DTestGetSoundbankInputStream2.java77 public void close() throws IOException { method in class:TestGetSoundbankInputStream2.BadInputStream
78 is.close();
116 bis.close();
/openjdk7/jdk/test/javax/sound/midi/Gervill/SF2SoundbankReader/
H A DTestGetSoundbankInputStream2.java77 public void close() throws IOException { method in class:TestGetSoundbankInputStream2.BadInputStream
78 is.close();
116 bis.close();
/openjdk7/jdk/test/sun/net/www/protocol/http/6550798/
H A DTestCache.java98 public void close() throws IOException { method in class:DeployByteArrayOutputStream
109 super.close();
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetworkServer.java52 public void close() throws IOException { method in class:NetworkServer
53 clientSocket.close();
80 serverSocket.close();
86 // close();
101 close();
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DChunkedOutputStream.java36 * normal close() does not close the underlying stream
130 public void close () throws IOException { method in class:ChunkedOutputStream
141 is.close();
143 /* some clients close the connection before empty chunk is sent */
H A DLeftOverInputStream.java38 * were read, by the time close() was called. In that case,
63 public void close () throws IOException { method in class:LeftOverInputStream
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeDispatcher.java70 abstract void close(FileDescriptor fd) throws IOException; method in class:NativeDispatcher

Completed in 96 milliseconds

1234567891011>>