Searched defs:close (Results 276 - 300 of 582) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DClient.java165 public void close() { method in class:Client
167 channel.close();
/openjdk7/jdk/src/share/sample/nio/server/
H A DChannelIO.java185 void close() throws IOException { method in class:ChannelIO
186 sc.close();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixDirectoryStream.java101 public void close() method in class:UnixDirectoryStream
164 // prevent close while reading
/openjdk7/langtools/test/tools/javac/file/zip/
H A DUtils.java74 close(ps);
98 public static void close(Closeable c) { method in class:Utils
101 c.close();
123 Utils.close(bis);
126 Utils.close(bis);
127 Utils.close(bos);
128 Utils.close(fos);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DASCIIReader.java240 public void close() throws IOException { method in class:ASCIIReader
244 fInputStream.close();
245 } // close()
H A DUCSReader.java304 public void close() throws IOException { method in class:UCSReader
308 fInputStream.close();
309 } // close()
H A DUTF8Reader.java660 public void close() throws IOException { method in class:UTF8Reader
664 fInputStream.close();
665 } // close()
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeTextReader.java487 public void close() throws IOException { method in class:XIncludeTextReader
489 fReader.close();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerReadStream.java181 public void close(ByteBufferWithInfo bbwi) method in class:BufferManagerReadStream
216 sb.append("close() - fragmentQueue is ")
262 sb.append("close() - fragmentStack - releasing ")
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaTransportManagerImpl.java182 public void close() method in class:CorbaTransportManagerImpl
186 dprint(".close->");
189 ((ConnectionCache)cc).close() ;
192 ((ConnectionCache)cc).close() ;
194 getSelector(0).close();
197 dprint(".close<-");
H A DSelectorImpl.java209 public void close() method in class:SelectorImpl
212 dprint(".close");
217 dprint(".close: already closed");
231 listenerThread.close();
239 readerThread.close();
246 // wakeup Selector thread to process close request
251 dprint(".close: selector.close: " + t);
280 selector.close();
472 listenerThread.close();
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DConnection.java85 public void close(); method in interface:Connection
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DInputLexer.java40 public void close() throws IOException { method in class:InputLexer
41 in.close();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFFile.java58 public void close(); method in interface:ELFFile
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DDLL.java154 public void close() { method in class:DLL
155 getFile().close();
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioInputStream.java388 public void close() throws IOException { method in class:AudioInputStream
389 stream.close();
475 //$$fb 2001-07-16: added this method to correctly close the underlying TargetDataLine.
477 public void close() throws IOException { method in class:AudioInputStream.TargetDataLineInputStream
484 line.close();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapVector.java134 close(position, rmSize);
138 close(position+addSize, rmSize-addSize);
156 void close(int position, int nItems) { method in class:GapVector
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFParser.java174 throw new IOException("Too many close-groups in RTF text");
311 public void close() method in class:RTFParser
330 super.close();
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageDecoder.java165 close();
175 public synchronized void close() { method in class:ImageDecoder
178 input.close();
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedReader.java513 public void close() throws IOException { method in class:BufferedReader
517 in.close();
H A DConsole.java59 * Invoking <tt>close()</tt> on the objects returned by the {@link #reader()}
60 * and the {@link #writer()} will not close the underlying stream of those
413 public void close () {} method in class:Console.LineReader
570 pw = new PrintWriter(out, true) { public void close() {} };
H A DFileInputStream.java317 * {@code close} or an I/O error occurs.
333 public void close() throws IOException { method in class:FileInputStream
347 channel.close();
357 * will not close it.
401 * Increment fd's use count. Invoking the channel's close()
420 * Ensures that the <code>close</code> method of this file input stream is
424 * @see java.io.FileInputStream#close()
432 * close() then the FileDescriptor is also released.
436 close();
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocketImpl.java226 protected abstract void close(); method in class:DatagramSocketImpl
H A DURLClassLoader.java199 * be closed if URLClassLoader.close() called. Due to jar file
262 * class when the {@code close} method is invoked, then the result of
265 * The method makes a best effort attempt to close all opened files,
267 * and errors are not caught. Calling close on an already closed
281 public void close() throws IOException { method in class:URLClassLoader
288 // now close any remaining streams.
294 c.close();
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DHandler.java92 * The close method will perform a <tt>flush</tt> and then close the
93 * <tt>Handler</tt>. After close has been called this <tt>Handler</tt>
100 public abstract void close() throws SecurityException; method in class:Handler

Completed in 136 milliseconds

<<11121314151617181920>>