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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/
AutoCloseable.java 30 * until it is closed. The {@link #close()} method of an {@code AutoCloseable}
59 * declare concrete implementations of the {@code close} method to
61 * if the close operation cannot fail.
63 * <p> Cases where the close operation may fail require careful
67 * close} method is unlikely to be invoked more than once and so
73 * to not have the {@code close} method throw {@link
82 * exception to be suppressed, the {@code AutoCloseable.close}
85 * <p>Note that unlike the {@link java.io.Closeable#close close}
86 * method of {@link java.io.Closeable}, this {@code close} metho
97 void close() throws Exception; method in interface:AutoCloseable
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
ICloseHandle.aidl 21 void close();
  /hardware/interfaces/broadcastradio/2.0/
ICloseHandle.hal 19 * Represents a generic close handle to remove a callback that doesn't need
28 * After the close call is executed, no other calls to this interface
31 close();
  /external/curl/tests/libtest/
test307.pl 17 close CURL;
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsStreamMediaSession.aidl 24 void close();
  /external/syslinux/core/fs/pxe/
tcp.c 24 .close = core_tcp_close_file,
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/java/
AutoCloseable.java 31 void close() throws Exception; method in interface:AutoCloseable
  /packages/apps/Camera2/src/com/android/camera/async/
SafeCloseable.java 20 * An {@link AutoCloseable} which should not throw in {@link #close}.
24 * Implementations must tolerate multiple calls to close().
27 public void close(); method in interface:SafeCloseable
  /cts/tests/camera/utils/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
  /prebuilts/go/darwin-x86/test/
float_lit.go 23 func close(da float64, ia, ib int64, pow int) bool { func
50 if !close(0., 0, 1, 0) {
53 if !close(+10., 10, 1, 0) {
56 if !close(-210., -210, 1, 0) {
60 if !close(.0, 0, 1, 0) {
63 if !close(+.01, 1, 100, 0) {
66 if !close(-.012, -12, 1000, 0) {
70 if !close(0.0, 0, 1, 0) {
73 if !close(+10.01, 1001, 100, 0) {
76 if !close(-210.012, -210012, 1000, 0)
    [all...]
  /prebuilts/go/linux-x86/test/
float_lit.go 23 func close(da float64, ia, ib int64, pow int) bool { func
50 if !close(0., 0, 1, 0) {
53 if !close(+10., 10, 1, 0) {
56 if !close(-210., -210, 1, 0) {
60 if !close(.0, 0, 1, 0) {
63 if !close(+.01, 1, 100, 0) {
66 if !close(-.012, -12, 1000, 0) {
70 if !close(0.0, 0, 1, 0) {
73 if !close(+10.01, 1001, 100, 0) {
76 if !close(-210.012, -210012, 1000, 0)
    [all...]
  /external/libese/libese-cpp/include/esecpp/
NxpPn80tNqNci.h 25 ~NxpPn80tNqNci() { close(); }
29 void close() override;
  /external/strace/tests/
pipe.c 43 (void) close(0);
44 (void) close(1);
  /external/strace/tests-m32/
pipe.c 43 (void) close(0);
44 (void) close(1);
  /external/strace/tests-mx32/
pipe.c 43 (void) close(0);
44 (void) close(1);
  /prebuilts/go/darwin-x86/src/hash/
test_gen.awk 12 close(cmd);
  /prebuilts/go/linux-x86/src/hash/
test_gen.awk 12 close(cmd);
  /tools/tradefederation/core/src/com/android/tradefed/result/
InputStreamSource.java 46 * @deprecated use {@link #close()} instead.
50 close(); method
58 public void close(); method in interface:InputStreamSource
  /external/ltp/testcases/kernel/mem/mtest05/
mmstress_dummy.c 27 close(1);
  /external/syslinux/com32/lib/
fclose.c 10 return close(fileno(__f));
  /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/ojluni/src/main/java/java/io/
Closeable.java 32 * The close method is invoked to release resources that the object is
44 * <p> As noted in {@link AutoCloseable#close()}, cases where the
45 * close may fail require careful attention. It is strongly advised
52 public void close() throws IOException; method in interface:Closeable
  /libcore/ojluni/src/main/java/java/nio/channels/
InterruptibleChannel.java 40 * #close close} method. This will cause the blocked thread to receive an
76 * Channel#close Channel} interface. </p>
80 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

Completed in 1129 milliseconds

1 2 3 4 5 6 7 8 91011>>