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

1 2

  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/linesfrombytes/
main.cpp 88 auto closes = strings | local
97 window_toggle(closes | start_with(0), [=](int){return closes;});
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-window_toggle.hpp 14 \param closes this function is called for each opened window and returns an observable. the first value from the returned observable will close the window.
65 window_toggle_values(openings_type opens, closing_selector_type closes, coordination_type c)
67 , closingSelector(closes)
77 window_toggle(openings_type opens, closing_selector_type closes, coordination_type coordination)
78 : initial(opens, closes, coordination)
  /build/soong/cmd/diff_target_files/
zip_artifact.go 33 // Close closes the zip file artifact.
66 // Close closes the buffered reader of the local zip file artifact.
  /external/syzkaller/vendor/cloud.google.com/go/storage/
reader.go 37 // Close closes the Reader. It must be called when done reading.
storage.go 109 // Close closes the Client.
    [all...]
  /external/syzkaller/pkg/osutil/
osutil_unix.go 67 // HandleInterrupts closes shutdown chan on first SIGINT
  /external/syzkaller/vendor/golang.org/x/net/context/ctxhttp/
ctxhttp_pre17.go 124 // notifyingReader is an io.ReadCloser that closes the notify channel after
  /bionic/docs/
fdsan.md 45 The way this is implemented is by providing functions to set a 64-bit closure tag on a file descriptor. The tag consists of an 8-bit type byte that identifies the type of the owner (`enum android_fdan_owner_type` in [`<android/fdsan.h>`](https://android.googlesource.com/platform/bionic/+/master/libc/include/android/fdsan.h)), and a 56-bit value. The value should ideally be something that uniquely identifies the object (object address for native objects and `System.identityHashCode` for Java objects), but in cases where it's hard to derive an identifier for the "owner" that should close a file descriptor, even using the same value for all file descriptors in the module can be useful, since it'll catch other code that closes your file descriptors.
186 The reason for this is (hopefully!) not a bug in fdsan, and will commonly be seen when tracking down double-closes in processes that have sparse fdsan coverage. What actually happened is that the culprit closed `bystander`'s file descriptor between its open and close, which resulted in `bystander` being blamed for closing `victim`'s fd. If we store `bystander`'s fd in a `unique_fd` as well, we should get something more useful:
227 In a real application, things are probably not going to be as detectable or reproducible as our toy example, which is a good reason to try to maximize the usage of fdsan-enabled types like `unique_fd` and `ParcelFileDescriptor`, to improve the odds that double closes in other code get detected.
231 fdsan operates via two main primitives. `android_fdsan_exchange_owner_tag` modifies a file descriptor's close tag, and `android_fdsan_close_with_tag` closes a file descriptor with its tag. In the `<android/fdsan.h>` header, these are marked with `__attribute__((weak))`, so instead of passing down the platform version from JNI, availability of the functions can be queried directly. An example implementation of unique_fd follows:
  /external/grpc-grpc/src/csharp/Grpc.Examples/
MathGrpc.cs 87 /// the client closes its end; the server does the same after sending all the
201 /// the client closes its end; the server does the same after sending all the
215 /// the client closes its end; the server does the same after sending all the
  /build/soong/ui/tracer/
tracer.go 156 // Close closes the output file. Any future events will be buffered until the
  /external/syzkaller/vendor/golang.org/x/net/context/
pre_go17.go 170 // cancel closes c.done, cancels each of c's children, and, if
  /external/syzkaller/vendor/golang.org/x/net/http2/
writesched.go 17 // CloseStream closes a stream in the write scheduler. Any frames queued on
write.go 49 // which closes the entire stream (not just the local half).
transport.go 403 // CloseIdleConnections closes any connections which were previously
    [all...]
server.go 567 // "The first use of a new stream identifier implicitly closes all
    [all...]
  /build/soong/ui/logger/
logger.go 187 // Close disables logging to the file and closes the file handle.
  /build/soong/third_party/zip/
reader.go 136 // Close closes the Zip file, rendering it unusable for I/O.
  /external/libchrome/mojo/public/js/
bindings.js 71 // Although users could just discard the object, reset() closes the pipe
  /external/protobuf/csharp/src/Google.Protobuf/
CodedOutputStream.cs 692 /// Flushes any buffered data and optionally closes the underlying stream, if any.
  /external/doclava/res/assets/templates-sdk/
class.cs 245 <!-- This DIV closes at the end of the BODY -->
  /external/u-boot/scripts/
checkpatch.pl     [all...]
  /external/boringssl/src/ssl/test/runner/
conn.go     [all...]
  /external/e2fsprogs/doc/
texinfo.tex 484 % actual body; @end closes the group after calling \Efoo. \envdef also
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 484 % actual body; @end closes the group after calling \Efoo. \envdef also
    [all...]
  /external/libffi/
texinfo.tex 523 % actual body; @end closes the group after calling \Efoo. \envdef also
    [all...]

Completed in 791 milliseconds

1 2