Searched defs:close (Results 26 - 50 of 182) sorted by relevance

12345678

/libcore/ojluni/src/main/java/java/io/
H A DPipedWriter.java178 public void close() throws IOException { method in class:PipedWriter
H A DSequenceInputStream.java61 * <code>close</code> method.
106 in.close();
132 * has been closed by invoking its {@link #close()} method
154 * reaches the end of the stream, it calls the <code>close</code>
182 * the stream, it calls the <code>close</code> method of the current
226 * before the <code>close</code> method returns.
230 public void close() throws IOException { method in class:SequenceInputStream
H A DByteArrayInputStream.java279 public void close() throws IOException { method in class:ByteArrayInputStream
H A DOutputStreamWriter.java232 public void close() throws IOException { method in class:OutputStreamWriter
233 se.close();
H A DReader.java31 * subclass must implement are read(char[], int, int) and close(). Most
260 abstract public void close() throws IOException; method in class:Reader
H A DStringReader.java198 public void close() { method in class:StringReader
H A DStringWriter.java233 public void close() throws IOException { method in class:StringWriter
H A DWriter.java31 * subclass must implement are write(char[], int, int), flush(), and close().
323 abstract public void close() throws IOException; method in class:Writer
/libcore/ojluni/src/main/java/java/nio/channels/
H A DFileLock.java313 public final void close() throws IOException { method in class:FileLock
H A DSelector.java43 * closed via its {@link #close close} method.
162 * is any possibility that another thread will cancel a key or close a channel.
173 * <li><p> By invoking the selector's {@link #close close} method, or
183 * <p> The {@link #close close} method synchronizes on the selector and all
394 public abstract void close() throws IOException; method in class:Selector
/libcore/ojluni/src/main/java/java/nio/file/
H A DFileTreeIterator.java121 public void close() { method in class:FileTreeIterator
122 walker.close();
/libcore/ojluni/src/main/java/java/util/logging/
H A DSocketHandler.java186 public synchronized void close() throws SecurityException { method in class:SocketHandler
187 super.close();
190 sock.close();
/libcore/ojluni/src/main/java/java/util/stream/
H A DBaseStream.java131 * Returns an equivalent stream with an additional close handler. Close
132 * handlers are run when the {@link #close()} method
134 * added. All close handlers are run, even if earlier close handlers throw
135 * exceptions. If any close handler throws an exception, the first
136 * exception thrown will be relayed to the caller of {@code close()}, with
151 * Closes this stream, causing all close handlers for this stream pipeline
154 * @see AutoCloseable#close()
157 void close(); method in interface:BaseStream
/libcore/ojluni/src/main/java/javax/crypto/
H A DCipherOutputStream.java197 * and calls the <code>close</code> method of the underlying output
203 public void close() throws IOException { method in class:CipherOutputStream
219 out.close();
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DChannelInputStream.java129 public void close() throws IOException { method in class:ChannelInputStream
130 ch.close();
H A DSocketDispatcher.java61 void close(FileDescriptor fd) throws IOException { method in class:SocketDispatcher
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestSSLSessions.java61 public void close() { method in class:TestSSLSessions
62 s.close();
H A DTestSSLSocketPair.java45 public void close() { method in class:TestSSLSocketPair
46 c.close();
48 server.close();
49 client.close();
/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleInputStream.java48 public void close() throws IOException { method in class:Support_ASimpleInputStream
H A DSupport_ASimpleOutputStream.java41 public void close() throws IOException { method in class:Support_ASimpleOutputStream
H A DSupport_ASimpleReader.java41 public void close() throws IOException { method in class:Support_ASimpleReader
H A DSupport_StringWriter.java59 public void close() throws IOException { method in class:Support_StringWriter
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DScannerParseLargeFileBenchmarkTest.java38 scanner.close();
39 reader.close();
49 public void close() throws IOException { method in class:ScannerParseLargeFileBenchmarkTest.FakeLargeFile
/libcore/luni/src/test/java/libcore/java/io/
H A DOldReaderTest.java114 @Override public void close() {} method in class:OldReaderTest.MockReader
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldErrorManagerTest.java52 public void close() {} method in class:OldErrorManagerTest.MockStream

Completed in 571 milliseconds

12345678