/external/rust/crates/tokio/tests/support/ |
D | mock_pool.rs | 15 pub(crate) struct Blocking<T> { struct 19 pub(crate) fn run<F, R>(f: F) -> Blocking<R> in run() argument 31 Blocking { rx } in run() 34 impl<T> Future for Blocking<T> { implementation
|
/external/rust/crates/tokio/src/io/ |
D | blocking.rs | 16 pub(crate) struct Blocking<T> { struct 34 Busy(sys::Blocking<(io::Result<usize>, Buf, T)>), argument 38 impl<T> Blocking<T> { impl 39 pub(crate) fn new(inner: T) -> Blocking<T> { 40 Blocking { 49 impl<T> AsyncRead for Blocking<T> implementation 100 impl<T> AsyncWrite for Blocking<T> implementation
|
D | stdin.rs | 1 use crate::io::blocking::Blocking; 30 std: Blocking<std::io::Stdin>, 46 std: Blocking::new(std),
|
D | stderr.rs | 1 use crate::io::blocking::Blocking; 39 std: SplitByUtf8BoundaryIfWindows<Blocking<std::io::Stderr>>, 71 std: SplitByUtf8BoundaryIfWindows::new(Blocking::new(std)),
|
D | stdout.rs | 1 use crate::io::blocking::Blocking; 38 std: SplitByUtf8BoundaryIfWindows<Blocking<std::io::Stdout>>, 70 std: SplitByUtf8BoundaryIfWindows::new(Blocking::new(std)),
|
D | mod.rs | 265 pub(crate) use crate::blocking::JoinHandle as Blocking;
|
/external/rust/crates/tokio/src/net/ |
D | addr.rs | 168 MaybeReady(sealed::State::Blocking(spawn_blocking(move || { 205 MaybeReady(sealed::State::Blocking(spawn_blocking(move || { 273 Blocking(JoinHandle<io::Result<vec::IntoIter<SocketAddr>>>), 292 State::Blocking(ref mut rx) => {
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | linux.cpp | 151 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { in getRandom() argument 161 syscall(SYS_getrandom, Buffer, Length, Blocking ? 0 : GRND_NONBLOCK); in getRandom()
|
D | common.h | 141 bool getRandom(void *Buffer, uptr Length, bool Blocking = false);
|
D | fuchsia.cpp | 175 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { in getRandom() argument
|
/external/perfetto/src/profiling/memory/ |
D | scoped_spinlock.cc | 49 for (size_t attempt = 1; mode == Mode::Blocking || in LockSlow()
|
D | scoped_spinlock.h | 46 Blocking enumerator
|
D | shared_ring_buffer_unittest.cc | 167 auto lock = wr.AcquireLock(ScopedSpinlock::Mode::Blocking); in TEST()
|
/external/scudo/standalone/ |
D | linux.cpp | 190 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { in getRandom() argument 200 syscall(SYS_getrandom, Buffer, Length, Blocking ? 0 : GRND_NONBLOCK); in getRandom()
|
D | common.h | 141 bool getRandom(void *Buffer, uptr Length, bool Blocking = false);
|
D | fuchsia.cpp | 186 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { in getRandom() argument
|
/external/eigen/doc/ |
D | TopicLinearAlgebraDecompositions.dox | 39 <td>Blocking, Implicit MT</td> 63 <td>Blocking</td> 99 <td>Blocking</td> 248 <dt><b>Blocking</b></dt>
|
/external/rust/crates/tokio/src/fs/ |
D | mod.rs | 126 pub(crate) use crate::blocking::JoinHandle as Blocking;
|
D | read_dir.rs | 48 Pending(sys::Blocking<(Option<io::Result<std::fs::DirEntry>>, std::fs::ReadDir)>),
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZSchedule.td | 56 def VecFPd : SchedWrite; // Blocking BFP div/sqrt unit.
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZSchedule.td | 56 def VecFPd : SchedWrite; // Blocking BFP div/sqrt unit.
|
/external/python/cpython3/Doc/library/ |
D | asyncio-dev.rst | 123 Running Blocking Code 126 Blocking (CPU-bound) code should not be called directly. For example,
|
/external/tensorflow/tensorflow/compiler/xla/pjrt/distributed/ |
D | protocol.proto | 116 // Blocking enumeration of devices, used by the GPU backend only.
|
/external/rust/crates/tokio/tests/ |
D | fs_file_mocked.rs | 49 pub(crate) use crate::support::mock_pool::{run, Blocking}; 55 pub(crate) use crate::support::mock_pool::{run, Blocking};
|
/external/kotlinx.coroutines/ui/ |
D | coroutines-guide-ui.md | 41 * [Blocking operations](#blocking-operations) 44 * [Blocking operations](#blocking-operations) 344 ## Blocking operations 463 ### Blocking operations
|