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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
close.cpp 34 int close(int fd) { function
37 // POSIX says that if close returns with EINTR, the fd must not be closed.
40 // with the state after EINTR being undefined, and EINPROGRESS for the case where close
43 // that close only returns -1 if it failed. Unlike other system calls, I have real
44 // difficulty even imagining a caller that would need to know that close was interrupted
50 // Since callers don't know ahead of time whether close will legitimately fail, they need
  /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();
39 void close() throws Exception; method in interface:AutoCloseable
  /system/bt/hci/include/
hci_inject.h 27 // Once started, this module must be shut down with |close|.
31 void (*close)(void); member in struct:hci_inject_t
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
MaybeNull.java 37 * Close the underlying {@link AutoCloseable}, if it's not {@code null}.
40 * @throws Exception If {@link AutoCloseable#close} fails.
42 public static <T extends AutoCloseable> void close(T closeable) throws Exception { method in class:MaybeNull
44 closeable.close();
49 * Close the underlying {@link UncheckedCloseable}, if it's not {@code null}.
56 public static <T extends UncheckedCloseable> void close(T closeable) { method in class:MaybeNull
58 closeable.close();
63 * Close the underlying {@link Closeable}, if it's not {@code null}.
66 * @throws Exception If {@link Closeable#close} fails.
68 public static <T extends Closeable> void close(T closeable) throws IOException method in class:MaybeNull
    [all...]
  /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();
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSource.java 42 @Override public void close() throws IOException { method in class:ForwardingSource
43 delegate.close();
Source.java 75 * error to read a closed source. It is safe to close a source more than once.
77 @Override void close() throws IOException; method in interface:Source
  /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();
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 43 public void close() throws IOException { method in class:BluetoothInputStream
44 mSocket.close();
  /libcore/benchmarks/src/benchmarks/regression/
SSLLoopbackBenchmark.java 42 context.close();
43 sockets[0].close(); method
44 sockets[1].close(); method
  /external/bison/lib/
close.c 0 /* close replacement.
27 #undef close macro
37 result = close (fd);
49 # define close_nothrow close
52 /* Override close() to call into other gnulib modules. */
  /external/javassist/src/main/javassist/
ClassPath.java 66 void close(); method in interface:ClassPath
  /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
  /cts/tests/tests/security/src/android/security/cts/
ARTBootASLRTest.java 49 bufReader.close();
50 reader.close();
51 ins.close();
  /external/proguard/src/proguard/
LineWordReader.java 65 public void close() throws IOException method in class:LineWordReader
67 super.close();
71 reader.close();
  /frameworks/base/core/java/com/android/internal/util/
SizedInputStream.java 38 public void close() throws IOException { method in class:SizedInputStream
39 super.close();
40 mWrapped.close();
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/util/
TicketImageProxy.java 42 public void close() { method in class:TicketImageProxy
49 super.close();
50 mTicket.close();
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 25 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
37 public void close() { method in class:ClosingMatrixCursor
39 mInnerCursor.close();
41 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 72 oos.close();
78 ois.close();
161 oinput.close();
168 input.close();
202 ooutput.close();
209 output.close();

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>