HomeSort by relevance Sort by last modified time
    Searched defs:close (Results 26 - 50 of 2719) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/common/system/
zipfileset_mock.py 44 def close(self): member in class:make_factory.MockZipFileSet
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
WMCloseCallsUIClientClose.cpp 36 static void close(WKPageRef, const void*) function in namespace:TestWebKitAPI
49 uiClient.close = close;
  /libcore/luni/src/main/java/java/io/
ObjectOutput.java 34 public void close() throws IOException; method in interface:ObjectOutput
FilterInputStream.java 63 public void close() throws IOException { method in class:FilterInputStream
64 in.close();
  /libcore/luni/src/main/java/java/nio/channels/
Channel.java 49 * If multiple threads attempt to simultaneously close a channel, then only
56 public void close() throws IOException; method in interface:Channel
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 105 firstStmt.close();
106 secondStmt.close();
110 firstStmt.close();
111 firstConnection.close();
112 secondConnection.close();
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSocketPair.java 45 public void close() { method in class:TestSSLSocketPair
46 c.close();
48 server.close();
49 client.close();
  /packages/apps/Email/src/org/apache/commons/io/input/
CloseShieldInputStream.java 25 * passed to a component that wants to explicitly close the stream even if
48 public void close() { method in class:CloseShieldInputStream
  /packages/apps/Email/src/org/apache/commons/io/output/
CloseShieldOutputStream.java 25 * passed to a component that wants to explicitly close the stream even if
48 public void close() { method in class:CloseShieldOutputStream
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionsProvider.java 36 void close(); method in interface:SuggestionsProvider
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
QuietlyCloseable.java 22 * Interface for closeable objects whose close method doesn't throw IOExceptions.
26 void close(); method in interface:QuietlyCloseable
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
CloseUtils.java 32 * If the argument is non-null, close the Closeable ignoring any {@link IOException}.
37 closeable.close();
44 /** If the argument is non-null, close the cursor. */
47 cursor.close();
  /development/tools/idegen/src/
Files.java 36 in.close();
46 out.close();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 73 * @see tests.support.Support_ServerSocket#close()
75 public void close() throws IOException { method in class:Support_HttpServerSocket
77 instance.close();
Support_ProcessReadWriteTest.java 42 input.close();
43 output.close();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 47 this.queryBuildScenarios.close();
49 this.queryBuildAllScenarios.close();
51 this.queryScenarioSummaries.close();
53 this.queryAllComments.close();
55 this.queryScenariosBuilds.close();
57 this.queryScenarioDataPoints.close();
59 this.queryDimScalars.close();
61 this.queryAllVariations.close();
  /external/ganymed-ssh2/examples/
PortForwarding.java 101 lpf1.close();
103 /* Close the connection */
105 conn.close();
  /external/guava/guava/src/com/google/common/io/
Closeables.java 61 * // Close the stream.
63 * Closeables.close(stream, threw);
70 * thrown by the {@code close} methods
72 * {@code close} throws an {@code IOException}.
74 public static void close(@Nullable Closeable closeable, method in class:Closeables
80 closeable.close();
92 * Equivalent to calling {@code close(closeable, true)}, but with no
99 close(closeable, true); method
MultiInputStream.java 47 @Override public void close() throws IOException { method in class:MultiInputStream
50 in.close();
61 close(); method
MultiReader.java 45 close(); method
81 @Override public void close() throws IOException { method in class:MultiReader
84 current.close();
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BaseResourceLoader.java 32 public void close(Reader reader) throws IOException { method in class:BaseResourceLoader
33 reader.close();
  /frameworks/base/core/java/android/bluetooth/
BluetoothServerSocket.java 46 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
49 * close the returned {@link BluetoothSocket}.
52 * safe. In particular, {@link #close} will always immediately abort ongoing
53 * operations and close the server socket.
93 * <p>{@link #close} can be used to abort this call from another thread.
107 * <p>{@link #close} can be used to abort this call from another thread.
117 * Immediately close this socket, and release all associated resources.
121 * close any {@link BluetoothSocket} received from {@link #accept()}.
123 public void close() throws IOException { method in class:BluetoothServerSocket
129 mSocket.close();
    [all...]
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
  /frameworks/base/core/java/android/net/
LocalServerSocket.java 113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 30 cursor.close();
40 assetFileDescriptor.close();

Completed in 1071 milliseconds

12 3 4 5 6 7 8 91011>>