Home
last modified time | relevance | path

Searched refs:SubchannelCall (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/
Dsubchannel.cc73 GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(SubchannelCall)))
75 (SubchannelCall*)(((char*)(call_stack)) - \
76 GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(SubchannelCall)))
125 return GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(SubchannelCall)) + in GetInitialCallSizeEstimate()
133 RefCountedPtr<SubchannelCall> SubchannelCall::Create(Args args, in Create()
138 return RefCountedPtr<SubchannelCall>(new ( in Create()
139 arena->Alloc(allocation_size)) SubchannelCall(std::move(args), error)); in Create()
142 SubchannelCall::SubchannelCall(Args args, grpc_error** error) in SubchannelCall() function in grpc_core::SubchannelCall
157 SubchannelCall::Destroy, this, &call_args); in SubchannelCall()
170 void SubchannelCall::StartTransportStreamOpBatch( in StartTransportStreamOpBatch()
[all …]
Dsubchannel.h71 class SubchannelCall; variable
102 class SubchannelCall {
114 static RefCountedPtr<SubchannelCall> Create(Args args, grpc_error** error);
127 RefCountedPtr<SubchannelCall> Ref() GRPC_MUST_USE_RESULT;
128 RefCountedPtr<SubchannelCall> Ref(const DebugLocation& location,
140 SubchannelCall(Args args, grpc_error** error);
Dclient_channel.cc551 RefCountedPtr<SubchannelCall> subchannel_call() const;
940 RefCountedPtr<SubchannelCall> subchannel_call() const { in subchannel_call()
1029 RefCountedPtr<SubchannelCall> subchannel_call_;
1126 RefCountedPtr<SubchannelCall> subchannel_call; in Destroy()
3329 RefCountedPtr<SubchannelCall> RetryingCall::subchannel_call() const { in subchannel_call()
5045 SubchannelCall* subchannel_call = in ResumePendingBatchInCallCombiner()
5046 static_cast<SubchannelCall*>(batch->handler_private.extra_arg); in ResumePendingBatchInCallCombiner()
5214 SubchannelCall::Args call_args = { in CreateSubchannelCall()
5221 subchannel_call_ = SubchannelCall::Create(std::move(call_args), &error); in CreateSubchannelCall()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/health/
Dhealth_check_client.cc286 SubchannelCall::Args args = { in StartCall()
297 call_ = SubchannelCall::Create(std::move(args), &error).release(); in StartCall()
387 SubchannelCall* call = in StartBatchInCallCombiner()
388 static_cast<SubchannelCall*>(batch->handler_private.extra_arg); in StartBatchInCallCombiner()
Dhealth_check_client.h102 SubchannelCall* call_;