Home
last modified time | relevance | path

Searched refs:call_counter_ (Results 1 – 17 of 17) sorted by relevance

/external/grpc-grpc/src/core/lib/channel/
Dchannelz.h159 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
160 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
161 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
168 CallCountingHelper call_counter_; variable
190 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
191 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
192 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
195 CallCountingHelper call_counter_;
Dchannelz.cc135 call_counter_.PopulateCallCounts(json); in RenderJson()
182 call_counter_.PopulateCallCounts(json); in RenderJson()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/
Dclient_channel_channelz.h59 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
60 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
61 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
68 CallCountingHelper call_counter_; variable
Dclient_channel_channelz.cc68 call_counter_.PopulateCallCounts(&data); in RenderJson()
/external/rust/crates/grpcio-sys/grpc/src/core/lib/channel/
Dchannelz.h194 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
195 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
196 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
217 CallCountingHelper call_counter_; variable
259 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
260 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
261 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
264 CallCountingHelper call_counter_;
Dchannelz.cc186 call_counter_.PopulateCallCounts(&data); in RenderJson()
313 call_counter_.PopulateCallCounts(&data); in RenderJson()
/external/grpc-grpc/src/core/ext/filters/client_channel/
Dclient_channel_channelz.h89 void RecordCallStarted() { call_counter_.RecordCallStarted(); } in RecordCallStarted()
90 void RecordCallFailed() { call_counter_.RecordCallFailed(); } in RecordCallFailed()
91 void RecordCallSucceeded() { call_counter_.RecordCallSucceeded(); } in RecordCallSucceeded()
96 CallCountingHelper call_counter_; variable
Dclient_channel_channelz.cc168 call_counter_.PopulateCallCounts(json); in RenderJson()
/external/webrtc/modules/audio_processing/aec3/
Drender_delay_controller_metrics.cc51 ++call_counter_; in Update()
74 if (call_counter_ == kMetricsReportingIntervalBlocks) { in Update()
88 } else if (reliable_delay_estimate_counter_ > (call_counter_ >> 1)) { in Update()
124 call_counter_ = 0; in Update()
Dcoarse_filter_update_gain.cc32 call_counter_ = 0; in HandleEchoPathChange()
43 ++call_counter_; in Compute()
53 saturated_capture_signal || call_counter_ <= size_partitions) { in Compute()
Drefined_filter_update_gain.cc65 call_counter_ = 0; in HandleEchoPathChange()
85 ++call_counter_; in Compute()
95 saturated_capture_signal || call_counter_ <= size_partitions) { in Compute()
Drender_delay_controller_metrics.h43 int call_counter_ = 0; variable
Dcoarse_filter_update_gain.h66 size_t call_counter_ = 0; variable
Drefined_filter_update_gain.h80 size_t call_counter_ = 0; variable
/external/tensorflow/tensorflow/core/kernels/
Dlogging_ops.cc84 : OpKernel(ctx), call_counter_(0) { in PrintOp()
98 if (call_counter_ >= first_n_) return; in Compute()
99 call_counter_++; in Compute()
112 int64 call_counter_ TF_GUARDED_BY(mu_) = 0;
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/xds/
Dxds_cluster_impl.cc212 RefCountedPtr<CircuitBreakerCallCounterMap::CallCounter> call_counter_; member in grpc_core::__anonff2650950111::XdsClusterImplLb::Picker
256 RefCountedPtr<CircuitBreakerCallCounterMap::CallCounter> call_counter_; member in grpc_core::__anonff2650950111::XdsClusterImplLb
281 : call_counter_(xds_cluster_impl_lb->call_counter_), in Picker()
305 uint32_t current = call_counter_->Increment(); in Pick()
309 call_counter_->Decrement(); in Pick()
324 call_counter_->Decrement(); in Pick()
342 auto* call_counter = call_counter_->Ref(DEBUG_LOCATION, "call").release(); in Pick()
370 call_counter_->Decrement(); in Pick()
440 call_counter_ = g_call_counter_map->GetOrCreate( in UpdateLocked()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dmap_and_batch_dataset_op.cc290 writer->WriteScalar(full_name(kCallCounter), call_counter_)); in SaveInternal()
304 reader->ReadScalar(full_name(kCallCounter), &call_counter_)); in RestoreInternal()
540 call_counter_ % dataset()->batch_size_ == 0)); in RunnerThread()
565 if (call_counter_ % dataset()->batch_size_ == 0) { in RunnerThread()
569 int64 offset = call_counter_++ % dataset()->batch_size_; in RunnerThread()
662 int64 call_counter_ TF_GUARDED_BY(*mu_) = 0;