Lines Matching refs:call_
53 call_(nullptr), in ClientContext()
63 if (call_) { in ~ClientContext()
64 grpc_call_unref(call_); in ~ClientContext()
72 ctx->propagate_from_call_ = context.call_; in FromServerContext()
85 GPR_ASSERT(call_ == nullptr); in set_call()
86 call_ = call; in set_call()
88 if (creds_ && !creds_->ApplyToCall(call_)) { in set_call()
93 grpc_call_cancel(call_, nullptr); in set_call()
112 if (call_) { in TryCancel()
113 grpc_call_cancel(call_, nullptr); in TryCancel()
121 if (call_) { in peer()
122 char* c_peer = grpc_call_get_peer(call_); in peer()