Searched refs:close (Results 1 - 25 of 73) sorted by relevance

123

/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DIOUtils.java48 * Try to close the given object if not {@code null} and log errors if an
50 * @param c object to close.
52 public static final void close(Closeable c) { method in class:IOUtils
55 c.close();
57 log.warning("Failed to close resource: " + e.getMessage());
58 log.log(Level.FINE, "close", e);
70 * Try to close the given socket if not {@code null} and log errors if an
72 * @param sock socket to close.
74 public static final void close(ServerSocket sock) { method in class:IOUtils
77 sock.close();
90 public static final void close(Socket sock) { method in class:IOUtils
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DHistoryReader.java53 public void close() throws IOException { method in class:HistoryReader
54 IOUtils.close(input);
H A DRCSget.java92 public void close() { method in class:RCSget
93 IOUtils.close(stream);
H A DJDBCHistoryCache.java115 IOUtils.close(in);
280 rs.close();
283 update.close();
295 rs.close();
306 rs.close();
333 rs.close();
350 stmt.close();
389 rs.close();
595 fileRS.close();
600 rs.close();
[all...]
H A DClearCaseRepository.java148 public void close() throws IOException {
149 super.close();
150 // delete the temporary file on close
178 * Drain all data from a stream and close it.
197 IOUtils.close(in);
240 IOUtils.close(in);
293 IOUtils.close(in);
294 in = null; // To avoid double close in finally clause
311 IOUtils.close(in);
/opengrok-jel/test/org/opensolaris/opengrok/analysis/php/
H A DPhpXrefTest.java46 out.close();
62 out.close();
63 in.close();
73 bir.close();
H A DPhpSymbolTokenizerTest.java52 IOUtils.close(ts);
100 r.close();
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DExecutorTest.java84 in.close();
87 in.close();
101 in.close();
104 in.close();
H A DTestRepository.java62 out.close();
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DXrefInputStream.java82 IOUtils.close(in);
84 IOUtils.close(fis);
169 canClose = false; // avoid that isr.close() closes in as well
175 IOUtils.close(isr);
208 IOUtils.close(in);
217 public void close() throws IOException { method in class:XrefInputStream
221 in.close();
242 IOUtils.close(in);
H A DXrefWriter.java110 public void close() { method in class:XrefWriter.RandomFileOutputStream
137 * Just wraps the given writer. {@link #close()} on this instance gets
185 public void close() throws IOException { method in class:XrefWriter
187 IOUtils.close(out); //flush and release wrapper stream resources
191 IOUtils.close(fos.raf);
H A DHash2TokenStream.java65 public void close() { method in class:Hash2TokenStream
66 // Nothing to close
H A DList2TokenStream.java72 public void close() { method in class:List2TokenStream
H A DJFlexTokenizer.java108 public final void close() throws IOException { method in class:JFlexTokenizer
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DSCCSgetTest.java115 in.close();
116 out.close();
167 sccs.close();
171 zstream.close();
/opengrok-jel/test/org/opensolaris/opengrok/configuration/
H A DProjectTest.java58 enc.close();
73 dec.close();
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java174 e.close();
175 IOUtils.close(sock);
213 IOUtils.close(instance.configServerSocket);
255 d.close();
269 IOUtils.close(s);
270 IOUtils.close(in);
283 IOUtils.close(instance.configServerSocket);
/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DList2TokenStreamTest.java70 instance.close();
/opengrok-jel/test/org/opensolaris/opengrok/web/
H A DEftarFileTest.java67 out.close();
121 er.close();
/opengrok-jel/src/org/opensolaris/opengrok/management/client/
H A DSettingsPersistence.java77 IOUtils.close(in);
88 IOUtils.close(is);
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java388 reader.close();
392 IOUtils.close(writer);
394 ctags.close();
396 IOUtils.close(analyzer);
494 IOUtils.close(wrt);
495 IOUtils.close(analyzer);
527 IOUtils.close(indexReader);
528 IOUtils.close(spellDirectory);
529 IOUtils.close(analyzer);
634 IOUtils.close(i
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/
H A DInfo.java70 IOUtils.close(in);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/sql/
H A DConsts.java69 reader.close();
H A DPLSQLConsts.java70 reader.close();
/opengrok-jel/src/org/opensolaris/opengrok/analysis/vb/
H A DConsts.java69 reader.close();

Completed in 23 milliseconds

123