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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
close.S 5 ENTRY(close) function
14 END(close)
  /bionic/libc/arch-x86/syscalls/
close.S 5 .type close, @function
6 .globl close
9 close: label
  /libcore/luni/src/main/java/java/io/
Closeable.java 20 * An {@code AutoCloseable} whose close method may throw an {@link IOException}.
27 * <p>Although only the first call has any effect, it is safe to call close
29 * overridden {@code AutoCloseable.close()}, which may be called at most
32 void close() throws IOException; method in interface:Closeable
  /libcore/luni/src/main/java/java/lang/
AutoCloseable.java 21 * are not used any longer. Calling the {@code close} method releases resources
29 * foo.close();
42 * call {@link #close} more than once.
44 void close() throws Exception; method in interface:AutoCloseable
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpSocket.java 48 public void close() throws IOException { method in class:Support_HttpSocket
50 instance.close();
Support_Socket.java 33 public void close() throws IOException; method in interface:Support_Socket
  /external/proguard/src/proguard/io/
ParentDataEntryWriter.java 70 public void close() throws IOException method in class:ParentDataEntryWriter
72 dataEntryWriter.close();
CascadingDataEntryWriter.java 86 public void close() throws IOException method in class:CascadingDataEntryWriter
88 dataEntryWriter1.close();
89 dataEntryWriter2.close();
FilteredDataEntryWriter.java 111 public void close() throws IOException method in class:FilteredDataEntryWriter
115 acceptedDataEntryWriter.close();
121 rejectedDataEntryWriter.close();
DataEntryWriter.java 44 * Returns an output stream for writing data. The caller must not close
55 * Returns an output stream for writing data. The caller must not close
72 public void close() throws IOException; method in interface:DataEntryWriter
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 43 public void close() throws IOException { method in class:BluetoothInputStream
44 mSocket.close();
BluetoothOutputStream.java 37 * Close this output stream and the socket associated with it.
39 public void close() throws IOException { method in class:BluetoothOutputStream
40 mSocket.close();
  /external/javassist/src/main/javassist/
ClassPath.java 66 void close(); method in interface:ClassPath
  /external/valgrind/tsan/
common_util.h 42 #define close fclose macro
  /frameworks/base/core/java/android/content/
EntityIterator.java 24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
38 public void close(); method in interface:EntityIterator
  /frameworks/base/core/java/android/content/res/
XmlResourceParser.java 26 * an additional close() method on this interface for the client to indicate
31 * Close this interface to the resource. Calls on the interface are no
34 public void close(); method in interface:XmlResourceParser
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 27 * the channel's {@link #close()} method. The I/O thread will throw an
50 public void close() throws IOException; method in interface:InterruptibleChannel
  /external/proguard/src/proguard/
FileWordReader.java 80 public void close() throws IOException method in class:FileWordReader
82 super.close();
86 reader.close();
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 24 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
36 public void close() { method in class:ClosingMatrixCursor
38 mInnerCursor.close();
40 super.close();
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 83 e0.close();
84 e1.close();
85 e2.close();
106 e.close();
128 w0.close();
129 gz1.close();
130 os2.close();
131 gz3.close();
170 e0.close();
171 e1.close();
    [all...]
  /external/apache-harmony/support/src/test/java/tests/util/
SerializationTester.java 74 oos.close();
80 ois.close();
176 oinput.close();
183 input.close();
217 ooutput.close();
224 output.close();
  /libcore/support/src/test/java/tests/net/
StuckServer.java 49 client.close();
69 public void close() throws IOException { method in class:StuckServer
70 serverSocket.close();
72 client.close();
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactLoader.java 53 public void close() { method in class:JoinContactLoader.JoinContactLoaderResult
55 suggestionCursor.close();
57 super.close();
  /packages/apps/Email/src/org/apache/commons/io/input/
TeeInputStream.java 30 * The proxied input stream is closed when the {@link #close()} method is
88 public void close() throws IOException { method in class:TeeInputStream
90 super.close();
93 branch.close();
  /cts/libs/vogar-expect/src/vogar/util/
IoUtils.java 28 c.close();
37 c.close();

Completed in 1105 milliseconds

1 2 3 4 5 6 7 8 91011>>