Lines Matching refs:cq_count
39 cq_count: usize, field
49 cq_count: unsafe { grpc_sys::gpr_cpu_num_cores() as usize }, in new()
62 pub fn cq_count(mut self, count: usize) -> EnvBuilder { in cq_count() method
64 self.cq_count = count; in cq_count()
91 let mut cqs = Vec::with_capacity(self.cq_count); in build()
92 let mut handles = Vec::with_capacity(self.cq_count); in build()
94 for i in 0..self.cq_count { in build()
115 for _ in 0..self.cq_count { in build()
142 pub fn new(cq_count: usize) -> Environment { in new()
143 assert!(cq_count > 0); in new()
146 .cq_count(cq_count) in new()