Searched defs:close (Results 201 - 225 of 582) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/io/
H A DCharArrayReader.java229 public void close() { method in class:CharArrayReader
H A DCharArrayWriter.java35 * Note: Invoking close() on this class has no effect, and methods
278 public void close() { } method in class:CharArrayWriter
H A DFileOutputStream.java365 public void close() throws IOException { method in class:FileOutputStream
380 channel.close();
390 * will not close it.
435 * Increment fd's use count. Invoking the channel's close()
447 * <code>close</code> method of this file output stream is
451 * @see java.io.FileInputStream#close()
462 * close() then the FileDescriptor is also released.
466 close();
H A DPipedInputStream.java420 * closed by invoking its {@link #close()} method, or if the pipe
444 public void close() throws IOException { method in class:PipedInputStream
H A DPipedReader.java359 public void close() throws IOException { method in class:PipedReader
H A DPushbackInputStream.java130 * invoking its {@link #close()} method,
161 * invoking its {@link #close()} method,
204 * invoking its {@link #close()} method.
226 * invoking its {@link #close()} method.
248 * invoking its {@link #close()} method.
269 * invoking its {@link #close()} method,
299 * invoking its {@link #close()} method,
376 public synchronized void close() throws IOException { method in class:PushbackInputStream
379 in.close();
H A DPushbackReader.java247 public void close() throws IOException { method in class:PushbackReader
248 super.close();
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketInputStream.java252 public void close() throws IOException { method in class:SocketInputStream
259 socket.close();
261 impl.close();
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractSelector.java99 * complete the close operation. </p>
104 public final void close() throws IOException { method in class:AbstractSelector
114 * <p> This method is invoked by the {@link #close close} method in order
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DMemoryHandler.java217 * This will also close the target <tt>Handler</tt>.
222 public void close() throws SecurityException { method in class:MemoryHandler
223 target.close();
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DDeflaterInputStream.java125 public void close() throws IOException { method in class:DeflaterInputStream
133 in.close();
H A DInflaterInputStream.java223 public void close() throws IOException { method in class:InflaterInputStream
227 in.close();
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherInputStream.java288 * The <code>close</code> method of <code>CipherInputStream</code>
289 * calls the <code>close</code> method of its underlying input
295 public void close() throws IOException { method in class:CipherInputStream
296 input.close();
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileCacheImageInputStream.java249 public void close() throws IOException { method in class:FileCacheImageInputStream
250 super.close();
251 disposerRecord.dispose(); // this will close/delete the cache file
279 cache.close();
H A DFileCacheImageOutputStream.java228 public void close() throws IOException { method in class:FileCacheImageOutputStream
233 super.close();
234 cache.close();
H A DMemoryCacheImageInputStream.java172 public void close() throws IOException { method in class:MemoryCacheImageInputStream
173 super.close();
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNBindingEnumeration.java155 public void close() throws NamingException { method in class:CNBindingEnumeration
166 * it, close it as we are done enumerating through the context
169 _ctx.close();
177 close();
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DResolver.java64 public void close() { method in class:Resolver
65 dnsClient.close();
97 cl.close();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslInputStream.java185 public void close() throws IOException { method in class:SaslInputStream
194 in.close(); // Close underlying input stream
H A DSaslOutputStream.java104 public void close() throws IOException { method in class:SaslOutputStream
112 super.close(); // Close underlying output stream
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java121 public void close() throws NamingException { method in class:LazySearchEnumerationImpl
123 candidates.close();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractLine.java238 public abstract void close(); method in class:AbstractLine
H A DModelStandardIndexedDirector.java158 public void close() { method in class:ModelStandardIndexedDirector
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/
H A DVersionHelper12.java253 public void close() { method in class:VersionHelper12.InputStreamEnumeration
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java47 * After reading the request body, the stream is close.
60 * The convenience method {@link #close()} does all of these tasks.
120 * <li>close the request InputStream, if not already closed<p></li>
121 * <li>close the response OutputStream, if not already closed. </li>
124 public abstract void close () ; method in class:HttpExchange
131 * before all data has been read, then the close() call will
154 * then the stream close() will throw an IOException. In both cases,

Completed in 64 milliseconds

1234567891011>>