Home
last modified time | relevance | path

Searched refs:CompletionQueueHandle (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/grpcio/src/
Dcq.rs18 pub struct CompletionQueueHandle { struct
27 unsafe impl Sync for CompletionQueueHandle {} implementation
28 unsafe impl Send for CompletionQueueHandle {} implementation
30 impl CompletionQueueHandle { implementation
31 pub fn new() -> CompletionQueueHandle { in new()
32 CompletionQueueHandle { in new()
110 impl Drop for CompletionQueueHandle { implementation
189 handle: Arc<CompletionQueueHandle>,
194 pub fn new(handle: Arc<CompletionQueueHandle>, worker: Arc<WorkQueue>) -> CompletionQueue { in new() argument
Denv.rs10 use crate::cq::{CompletionQueue, CompletionQueueHandle, EventType, WorkQueue};
15 let cq = Arc::new(CompletionQueueHandle::new()); in poll_queue()