Searched refs:blocking (Results 1 – 7 of 7) sorted by relevance
/system/bt/gd/neighbor/facade/ |
D | facade.proto | 15 …// TODO: Should we use a blocking call for ReadRemoteName instead? (Note: blocking model may not w…
|
/system/core/adb/client/ |
D | incremental_server.cpp | 233 bool SkipToRequest(void* buffer, size_t* size, bool blocking); 234 std::optional<RequestCommand> ReadRequest(bool blocking); 272 bool IncrementalServer::SkipToRequest(void* buffer, size_t* size, bool blocking) { in SkipToRequest() argument 300 auto res = adb_poll(&pfd, 1, blocking ? kPollTimeoutMillis : 0); in SkipToRequest() 309 if (blocking) { in SkipToRequest() 312 if (blocking && servingComplete_) { in SkipToRequest() 336 std::optional<RequestCommand> IncrementalServer::ReadRequest(bool blocking) { in ReadRequest() argument 339 if (!SkipToRequest(&commandBuf, &size, blocking)) { in ReadRequest() 569 const bool blocking = prefetches_.empty(); in Serve() local 570 if (blocking) { in Serve() [all …]
|
/system/bt/gd/docs/architecture/ |
D | architecture.md | 57 * Do blocking I/O operations in separate threads 81 between these two layers to buffer any blocking operation. 85 potentially blocking. Hence it has its separate thread to avoid blocking the 106 **Non-blocking queue** 108 will return immediately. All queueing within a thread must be non-blocking, 118 : Same as non-blocking queue, but it will flush when it’s full and user tries
|
/system/netd/tests/benchmarks/ |
D | README.md | 26 does not include any time spent in other processes or blocking on I/O.
|
/system/core/logcat/ |
D | logcat.cpp | 76 void SetupOutputAndSchedulingPolicy(bool blocking); 247 void Logcat::SetupOutputAndSchedulingPolicy(bool blocking) { in SetupOutputAndSchedulingPolicy() argument 250 if (blocking) { in SetupOutputAndSchedulingPolicy()
|
/system/core/logd/ |
D | README.replay.md | 13 the logd socket in `liblog` blocking, by removing `SOCK_NONBLOCK` from the `socket()` call in
|
/system/core/logcat/tests/ |
D | logcat_test.cpp | 643 TEST(logcat, blocking) { in TEST() argument
|