Home
last modified time | relevance | path

Searched refs:RequestCallContext (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/grpcio/src/task/
Dcallback.rs6 use crate::server::{self, RequestCallContext};
13 pub fn new(rc: RequestCallContext) -> Request { in new()
41 pub fn new(ctx: RequestContext, rc: RequestCallContext) -> UnaryRequest { in new()
Dmod.rs22 use crate::server::RequestCallContext;
130 pub fn request(ctx: RequestCallContext) -> CallTag { in request()
148 pub fn unary_request(ctx: RequestContext, rc: RequestCallContext) -> CallTag { in unary_request()
/external/rust/crates/grpcio/src/call/
Dserver.rs30 use crate::server::{BoxHandler, RequestCallContext};
76 request_call: Option<RequestCallContext>,
80 pub fn new(rc: RequestCallContext) -> RequestContext { in new()
95 rc: &mut RequestCallContext, in handle_stream_req() argument
119 pub fn handle_unary_req(self, rc: RequestCallContext, _: &CompletionQueue) { in handle_unary_req() argument
136 pub fn take_request_call_context(&mut self) -> Option<RequestCallContext> { in take_request_call_context() argument
214 request_call: Option<RequestCallContext>,
219 pub fn new(ctx: RequestContext, rc: RequestCallContext) -> UnaryRequestContext { in new()
239 pub fn take_request_call_context(&mut self) -> Option<RequestCallContext> { in take_request_call_context() argument
245 rc: &mut RequestCallContext, in handle() argument
/external/rust/crates/grpcio/src/
Dserver.rs472 pub struct RequestCallContext { struct
478 impl RequestCallContext { argument
494 unsafe impl Send for RequestCallContext {} implementation
497 pub fn request_call(ctx: RequestCallContext, cq: &CompletionQueue) { in request_call() argument
593 let rc = RequestCallContext { in start()