/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
|
/external/chromium_org/base/mac/ |
close_nocancel.cc | 8 // When the default version of close used on Mac OS X fails with EINTR, the 11 // from the error. If the close is retried after the FD has been closed, the 12 // subsequent close can report EBADF, or worse, it can close an unrelated FD 13 // opened by another thread. If the close is not retried after the FD has been 16 // Mac OS X provides an alternate version of close, close$NOCANCEL. This 18 // this version, it is thus safe to call close without checking for EINTR (as 20 // this verison of close with HANDLE_EINTR is hazardous. 25 // file implements an alternative: to use the $NOCANCEL variant of close (thu [all...] |
/frameworks/base/telephony/java/com/android/ims/internal/ |
IImsStreamMediaSession.aidl | 24 void close();
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
AutoCloseable.java | 31 void close() throws Exception; } method in interface:AutoCloseable
|
/hardware/intel/img/libdrm/tests/ |
openclose.c | 35 close(fd);
|
/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
|
/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...] |
UncheckedCloseable.java | 21 * are not used any longer; calling the {@code close} method releases resources 35 * foo.close(); 47 void close(); method in interface:UncheckedCloseable
|
/libcore/luni/src/main/java/java/util/logging/ |
ConsoleHandler.java | 57 public void close() { method in class:ConsoleHandler 58 super.close(false);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebExternalPopupMenu.h | 41 virtual void close() = 0;
|
/external/chromium_org/tools/gyp/test/actions-bare/src/ |
bare.py | 11 f.close()
|
/external/chromium_org/tools/gyp/test/additional-targets/src/dir1/ |
emit.py | 11 f.close()
|
/external/chromium_org/tools/gyp/test/hard_dependency/src/ |
emit.py | 11 f.close()
|
/external/chromium_org/tools/gyp/test/ninja/action_dependencies/src/ |
emit.py | 11 f.close()
|
/external/chromium_org/tools/gyp/test/same-rule-output-file-name/src/ |
touch.py | 11 f.close()
|
/external/chromium_org/tools/gyp/test/same-target-name-different-directory/src/ |
touch.py | 11 f.close()
|
/external/lldb/test/functionalities/breakpoint/breakpoint_command/ |
bktptcmd.py | 4 there.close()
|
/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
|
/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
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
NamedTaskExecutor.java | 42 void close(); method in interface:NamedTaskExecutor
|
QuietlyCloseable.java | 22 * Interface for closeable objects whose close method doesn't throw IOExceptions. 26 void close(); method in interface:QuietlyCloseable
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
DataOutputStreamTest.java | 53 dis.close(); 62 os.close(); 66 dis.close(); 75 os.close(); 79 dis.close(); 89 os.close(); 92 dis.close(); 101 os.close(); 104 dis.close(); 113 os.close(); [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
AutoCloseInputStream.java | 61 public void close() throws IOException { method in class:AutoCloseInputStream 62 in.close(); 68 * If the underlying stream returns -1, the {@link #close()} method is 69 * called to automatically close and discard the stream. 77 close(); method 84 * buffer. If the underlying stream returns -1, the {@link #close()} method 85 * i called to automatically close and discard the stream. 94 close(); method 101 * buffer. If the underlying stream returns -1, the {@link #close()} method 102 * i called to automatically close and discard the stream 113 close(); method 125 close(); method [all...] |
/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/proguard/src/proguard/ |
LineWordReader.java | 65 public void close() throws IOException method in class:LineWordReader 67 super.close(); 71 reader.close();
|