HomeSort by relevance Sort by last modified time
    Searched defs:close (Results 1 - 25 of 7761) 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
  /external/python/cpython3/Tools/freeze/
bkfile.py 17 _orig_close = f.close
18 def close(): function in function:open
25 f.close = close
  /external/autotest/client/common_lib/cros/fake_device_server/
fake_gcd_helper.py 50 def close(self): member in class:FakeGCDHelper
51 """Close this instance."""
52 self._process.close()
  /external/parameter-framework/upstream/tools/clientSimulator/
pfClientSimulator.py 45 def close(logger, testLauncher, coverage): function
211 close(logger, testLauncher, args.coverage)
213 close(logger, testLauncher, args.coverage)
  /external/python/cpython2/Tools/freeze/
bkfile.py 34 def close(self): member in class:_BkFile
35 self.__file.close()
  /external/syslinux/com32/lib/sys/
close.c 29 * close.c
37 int close(int fd) function
47 if (fp->iop->close) {
48 rv = fp->iop->close(fp);
54 if (fp->oop->close) {
55 rv = fp->oop->close(fp);
  /frameworks/av/media/libaaudio/src/utility/
FixedBlockAdapter.cpp 22 close();
33 int32_t FixedBlockAdapter::close() function in class:FixedBlockAdapter
  /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/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...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
lif.go 20 func (ep *endpoint) close() error { func
21 return syscall.Close(int(ep.s))
  /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/src/vendor/golang_org/x/net/lif/
lif.go 20 func (ep *endpoint) close() error { func
21 return syscall.Close(int(ep.s))
  /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...]
  /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/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...]
  /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/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryOutput.java 29 public void close() throws IOException { method in class:MemoryOutput
30 super.close();
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
StreamProvider.java 64 public void close() throws IOException { method in class:StreamProvider
65 _reader.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();
  /external/proguard/src/proguard/io/
ParentDataEntryWriter.java 70 public void close() throws IOException method in class:ParentDataEntryWriter
72 dataEntryWriter.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 31 context.close();
32 sockets[0].close(); method
33 sockets[1].close(); method
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
bkfile.py 34 def close(self): member in class:_BkFile
35 self.__file.close()
  /external/autotest/client/common_lib/cros/
process_watcher.py 50 def close(self, timeout_seconds=40): member in class:ProcessWatcher
51 """Close the (potentially remote) instance of the process.
  /external/autotest/server/cros/network/rf_switch/
scpi_ssh_tunnel.py 104 def close(self): member in class:ScpiSshTunnel
105 """Close the connection."""
107 self.socket.close()

Completed in 712 milliseconds

1 2 3 4 5 6 7 8 91011>>