HomeSort by relevance Sort by last modified time
    Searched full:nonblocking (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Analysis/
mpicheckernotes.cpp 10 MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note{{Request is previously used by nonblocking call here.}}
11 MPI_Irecv(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}}
18 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &sendReq); // expected-note{{Request is previously used by nonblocking call here.}}
21 // If more than 2 nonblocking calls are using a request in a sequence, they all
28 MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-note 2{{Request is previously used by nonblocking call here.}}
29 MPI_Irecv(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}}
31 MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}} expected-note{{Double nonblocking on request 'sendReq'.}
    [all...]
MemRegion.cpp 11 MPI_Wait(&sendReq1, MPI_STATUS_IGNORE); // expected-warning{{Request 'sendReq1' has no matching nonblocking call.}}
18 MPI_Wait(&sendReq1[1][7][9], MPI_STATUS_IGNORE); // expected-warning{{Request 'sendReq1[1][7][9]' has no matching nonblocking call.}}
27 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req' has no matching nonblocking call.}}
36 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req[0][1]' has no matching nonblocking call.}}
46 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req.req' has no matching nonblocking call.}}
mpichecker.cpp 80 MPI_Irecv(&buf, 1, MPI_DOUBLE, rank - 1, 0, MPI_COMM_WORLD, &sendReq1); // expected-warning{{Double nonblocking on request 'sendReq1'.}}
92 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req); // expected-warning{{Double nonblocking on request 'req'.}}
105 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &rs.req); // expected-warning{{Double nonblocking on request 'rs.req'.}}
116 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req); // expected-warning{{Double nonblocking on request 'req'.}}
125 MPI_Irecv(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}}
126 MPI_Isend(&buf, 1, MPI_DOUBLE, 0, 0, MPI_COMM_WORLD, &sendReq); // expected-warning{{Double nonblocking on request 'sendReq'.}}
134 MPI_Wait(&sendReq1[1][7][9], MPI_STATUS_IGNORE); // expected-warning{{Request 'sendReq1[1][7][9]' has no matching nonblocking call.}}
143 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req[0][1]' has no matching nonblocking call.}}
150 MPI_Wait(&sendReq, MPI_STATUS_IGNORE); // expected-warning{{Request 'sendReq' has no matching nonblocking call.}}
158 MPI_Wait(&sendReq[i], MPI_STATUS_IGNORE); // expected-warning-re 1+{{Request {{.*}} has no matching nonblocking call.}
    [all...]
  /frameworks/av/media/libmediaextractor/include/media/stagefright/
MediaBufferGroup.h 44 // If nonBlocking is false, it blocks until a buffer is available and
47 // If nonBlocking is true and a buffer is not immediately available,
53 MediaBufferBase **buffer, bool nonBlocking = false, size_t requestedSize = 0);
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIBugReporter.h 31 new BugType(&CB, "Double nonblocking", MPIError));
35 /// Report duplicate request use by nonblocking calls without intermediate
38 /// \param MPICallEvent MPI call that caused the double nonblocking
39 /// \param Req request that was used by two nonblocking calls in sequence
49 /// Report a missing wait for a nonblocking call. A missing wait report
50 /// is emitted if a nonblocking call is not matched in the scope of a
MPIChecker.cpp 43 // double nonblocking detected
44 if (Req && Req->CurrentState == Request::State::Nonblocking) {
51 State = State->set<RequestMap>(MR, Request::State::Nonblocking);
87 // A wait has no matching nonblocking call.
115 if (Req.second.CurrentState == Request::State::Nonblocking) {
MPIChecker.h 55 /// Checks if a request is used by nonblocking calls multiple times
57 /// in order to only inspect nonblocking functions.
64 /// intermediate nonblocking call or if the request used by the wait
72 /// Check if a nonblocking call is not matched by a wait.
74 /// request was a nonblocking call, this is rated as a missing wait.
MPITypes.h 30 enum State : unsigned char { Nonblocking, Wait };
46 // region. Requests are used in MPI to complete nonblocking operations with wait
MPIBugReporter.cpp 31 ErrorText = "Double nonblocking on request " +
44 RequestRegion, "Request is previously used by nonblocking call here. "));
64 RequestRegion, "Request is previously used by nonblocking call here. "));
75 " has no matching nonblocking call. "};
  /external/webrtc/webrtc/base/
socketfactory.h 30 // Returns a new socket for nonblocking communication. The type can be
  /prebuilts/go/darwin-x86/src/internal/poll/
sys_cloexec.go 17 // descriptor as nonblocking and close-on-exec.
sock_cloexec.go 15 // descriptor as nonblocking and close-on-exec.
  /prebuilts/go/darwin-x86/src/net/
sock_cloexec.go 19 // descriptor as nonblocking and close-on-exec.
sys_cloexec.go 19 // descriptor as nonblocking and close-on-exec.
  /prebuilts/go/linux-x86/src/internal/poll/
sys_cloexec.go 17 // descriptor as nonblocking and close-on-exec.
sock_cloexec.go 15 // descriptor as nonblocking and close-on-exec.
  /prebuilts/go/linux-x86/src/net/
sock_cloexec.go 19 // descriptor as nonblocking and close-on-exec.
sys_cloexec.go 19 // descriptor as nonblocking and close-on-exec.
  /system/core/adb/
adb_io.cpp 155 // nonblocking socket and it would have blocked (which would be bad
156 // because we'd probably block the main thread where nonblocking IO is
157 // done). Don't do that. If you have a nonblocking socket, use the
  /frameworks/av/media/libmedia/include/media/
IMediaSource.h 89 // Returns true if |read| supports nonblocking option, otherwise false.
90 // |readMultiple| if supported, always allows the nonblocking option.
122 // Override in source if nonblocking reads are supported.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_ssl.c 462 int sockstate, nonblocking; local
465 nonblocking = (self->Socket->sock_timeout >= 0.0);
466 BIO_set_nbio(SSL_get_rbio(self->ssl), nonblocking);
467 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking);
1181 int nonblocking; local
1276 int nonblocking; local
1368 int err, ssl_err, sockstate, nonblocking; local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
WorkerMain.java 41 // nonblocking connect so we can interleave the system call with injector creation.
  /external/tensorflow/tensorflow/stream_executor/
event.h 36 // monitored via the nonblocking Event::PollForStatus() call.
  /external/skia/experimental/Networking/
SkSockets.h 66 * nonblocking sockets, read will return 0 if there's nothing to read. For
119 * Set the socket specified by the socket file descriptor as nonblocking
  /external/skqp/experimental/Networking/
SkSockets.h 66 * nonblocking sockets, read will return 0 if there's nothing to read. For
119 * Set the socket specified by the socket file descriptor as nonblocking

Completed in 484 milliseconds

1 2 3 4 5 6 7 8