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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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
  /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()
  /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/chromium_org/base/files/
scoped_file.cc 29 PCHECK(0 == IGNORE_EINTR(close(fd)));
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
MessageReceiver.java 21 * @see java.io.Closeable#close()
24 public void close(); method in interface:MessageReceiver
SideEffectFreeCloseable.java 15 * @see java.io.Closeable#close()
18 public void close() { method in class:SideEffectFreeCloseable
  /external/chromium_org/third_party/WebKit/public/platform/
WebSocketStreamHandle.h 52 // Close the socket stream.
53 virtual void close() { } function in class:blink::WebSocketStreamHandle
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_posix.h 6 #define usbi_close close
  /external/chromium_org/tools/gyp/test/gyp-defines/
echo.py 11 f.close()
  /external/chromium_org/tools/gyp/test/rules/src/
rule.py 17 f.close()
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerQuadratics_Test.cpp 17 path.close();
20 path.close();
28 path.close();
31 path.close();
39 path.close();
42 path.close();
50 path.close();
53 path.close();
63 path.close();
67 path.close();
    [all...]
  /bionic/libc/arch-arm/syscalls/
close.S 5 ENTRY(close) function
14 END(close)
  /bionic/libc/arch-arm64/syscalls/
close.S 5 ENTRY(close) function
14 END(close)
  /bionic/libc/arch-mips/syscalls/
close.S 5 ENTRY(close) function
19 END(close)
  /bionic/libc/arch-x86_64/syscalls/
close.S 5 ENTRY(close) function
15 END(close)
  /cts/libs/vogar-expect/src/vogar/util/
IoUtils.java 28 c.close();
37 c.close();

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011>>