Searched refs:close (Results 251 - 275 of 471) sorted by relevance

<<111213141516171819

/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DPushbackInputStreamTest.java97 method = "close",
104 tobj.close();
105 tobj.close();
109 tobj.close();
456 * Tears down the fixture, for example, close a network connection. This
461 pis.close();
H A DInputStreamTest.java71 myIS.close();
91 * @tests java.io.InputStream#close()
95 notes = "Verifies close(). Since this method does nothing, this test is intentionally kept basic.",
96 method = "close",
101 is.close();
398 is.close();
H A DFileTest.java341 fos.close();
366 fos.close();
697 fos.close();
740 new FileOutputStream(f1).close(); // create the file
778 fos.close();
887 fos.close();
1188 fos.close();
1215 fos2.close();
1258 fos.close();
1289 fos.close();
[all...]
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectionKeyTest.java72 selector.close();
262 sc.close();
276 selector.close();
436 ss.close();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DASN1OctetString.java83 dOut.close();
/dalvik/libcore/sql/src/main/java/SQLite/
H A DStmt.java61 * s.close();
75 public native void close() throws SQLite.Exception; method in class:Stmt
/dalvik/libcore/sql/src/main/java/java/sql/
H A DConnection.java103 * leave the {@code close} operation to take place in this way. Mainly
109 public void close() throws SQLException; method in interface:Connection
293 * a consequence of a successful invocation of the {@link #close()} method
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java53 public void close() { method in class:Support_StringReader
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/
H A DSocketFactoryTest.java348 s.close();
353 s.close();
358 s.close();
363 s.close();
/dalvik/libcore/xml/src/test/java/tests/xml/
H A DDeclarationTest.java66 out.close();
/dalvik/tools/
H A Ddeadcode.py109 pipe.close()
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DJarFile.java314 is.close();
466 public void close() throws IOException { method in class:JarFile
467 super.close();
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DZipFile.java132 close();
141 public void close() throws IOException { method in class:ZipFile
144 if (raf != null) { // Only close initialized instances
147 raf.close();
/dalvik/libcore/json/src/main/java/org/json/
H A DJSONStringer.java148 return close(Scope.EMPTY_ARRAY, Scope.NONEMPTY_ARRAY, "]");
167 return close(Scope.EMPTY_OBJECT, Scope.NONEMPTY_OBJECT, "}");
188 JSONStringer close(Scope empty, Scope nonempty, String closeBracket) throws JSONException { method in class:JSONStringer
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DExcludedProxyTest.java99 out2.close();
122 out.close();
215 out.close();
H A DResponseCacheTest.java177 is.close();
225 is.close();
228 s.close();
/dalvik/libcore/security/src/test/java/tests/api/java/security/
H A DPermissionCollectionTest.java142 fileOut.close();
166 fout.close();
169 jis.close();
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCStatement.java73 rs.close();
197 public void close() throws SQLException { method in class:JDBCStatement
213 rs.close();
H A DJDBCDatabaseMetaData.java544 s.close();
548 s.close();
598 s.close();
602 s.close();
733 s0.close();
734 s1.close();
777 s2.close();
855 s0.close();
891 s1.close();
926 s1.close();
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatReader.java266 // TODO: Don't eat original exception when close() throws.
267 reader.close();
279 // TODO: Don't eat original exception when close() throws.
280 in.close();
295 in.close();
/dalvik/vm/
H A DJarFile.c133 * Unlock and close it.
173 close(fd);
217 close(fd);
353 close(fd);
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocket.java427 public synchronized void close() throws IOException { method in class:Socket
429 impl.close();
784 impl.close();
978 impl.close();
1058 impl.close();
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImpl.java115 privateKeyPEMWriter.close();
123 certificateWriter.close();
925 public void close() throws IOException { method in class:OpenSSLSocketImpl
926 // TODO: Close SSL sockets using a background thread so they close
937 if (autoClose && !socket.isClosed()) socket.close();
939 if (!super.isClosed()) super.close();
977 socket.close();
980 super.close();
996 * close anything. The SocketImpl, either our own
999 * if you want to do that, properly close th
[all...]
/dalvik/vm/jdwp/
H A DJdwpSocket.c215 close(listenSock);
219 close(clientSock);
246 close(netState->wakePipe[0]);
250 close(netState->wakePipe[1]);
453 close(netState->clientSock);
492 close(netState->clientSock);
651 * close the listen socket, but there's a good chance we won't be able to
744 close(tmpSock);
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DDatabaseTest.java108 statement.close();
129 db.close();
135 // conn.close();
154 db.close();
157 db2.close();
166 db2.close();
196 db.close();
207 db2.close();
252 db.close();
276 * @tests Database#close()
[all...]

Completed in 413 milliseconds

<<111213141516171819