/third_party/grpc/src/core/lib/transport/ |
D | connectivity_state.h | 43 const char* ConnectivityStateName(grpc_connectivity_state state); 56 virtual void Notify(grpc_connectivity_state new_state, 72 void Notify(grpc_connectivity_state new_state, 85 virtual void OnConnectivityStateChange(grpc_connectivity_state new_state, 101 const char* name, grpc_connectivity_state state = GRPC_CHANNEL_IDLE, 112 void AddWatcher(grpc_connectivity_state initial_state, 121 void SetState(grpc_connectivity_state state, const absl::Status& status, 126 grpc_connectivity_state state() const; 134 Atomic<grpc_connectivity_state> state_;
|
D | connectivity_state.cc | 36 const char* ConnectivityStateName(grpc_connectivity_state state) { in ConnectivityStateName() 61 grpc_connectivity_state state, const absl::Status& status, in Notifier() 88 const grpc_connectivity_state state_; 94 grpc_connectivity_state state, const absl::Status& status) { in Notify() 104 grpc_connectivity_state current_state = state_.Load(MemoryOrder::RELAXED); in ~ConnectivityStateTracker() 118 grpc_connectivity_state initial_state, in AddWatcher() 124 grpc_connectivity_state current_state = state_.Load(MemoryOrder::RELAXED); in AddWatcher() 150 void ConnectivityStateTracker::SetState(grpc_connectivity_state state, in SetState() 153 grpc_connectivity_state current_state = state_.Load(MemoryOrder::RELAXED); in SetState() 176 grpc_connectivity_state ConnectivityStateTracker::state() const { in state() [all …]
|
/third_party/grpc/test/core/transport/ |
D | connectivity_state_test.cc | 45 Watcher(int* count, grpc_connectivity_state* output, in Watcher() 53 void Notify(grpc_connectivity_state new_state) override { in Notify() 60 grpc_connectivity_state* output_; 73 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 83 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 96 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 116 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 136 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 150 grpc_connectivity_state state = GRPC_CHANNEL_IDLE; in TEST() 167 grpc_connectivity_state state = GRPC_CHANNEL_SHUTDOWN; in TEST()
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | subchannel_interface.h | 43 grpc_connectivity_state new_state) = 0; 56 virtual grpc_connectivity_state CheckConnectivityState() = 0; 70 grpc_connectivity_state initial_state, 105 grpc_connectivity_state CheckConnectivityState() override { in CheckConnectivityState() 109 grpc_connectivity_state initial_state, in WatchConnectivityState()
|
D | subchannel.h | 177 grpc_connectivity_state state; 252 grpc_connectivity_state CheckConnectivityState( 265 grpc_connectivity_state initial_state, 309 void NotifyLocked(Subchannel* subchannel, grpc_connectivity_state state, 336 Subchannel* subchannel, grpc_connectivity_state initial_state, 343 void NotifyLocked(grpc_connectivity_state state, 346 grpc_connectivity_state CheckConnectivityStateLocked( 362 void SetConnectivityStateLocked(grpc_connectivity_state state, 405 grpc_connectivity_state state_ = GRPC_CHANNEL_IDLE;
|
D | client_channel.h | 41 grpc_connectivity_state grpc_client_channel_check_connectivity_state( 58 grpc_connectivity_state* state, grpc_closure* on_complete, 69 grpc_channel_element* elem, grpc_connectivity_state initial_state,
|
D | subchannel.cc | 317 void OnConnectivityStateChange(grpc_connectivity_state new_state, in OnConnectivityStateChange() 369 Subchannel* subchannel, grpc_connectivity_state state, in AsyncWatcherNotifierLocked() 411 Subchannel* subchannel, grpc_connectivity_state state, in NotifyLocked() 428 grpc_connectivity_state subchannel_state) in HealthWatcher() 446 grpc_connectivity_state state() const { return state_; } in state() 449 grpc_connectivity_state initial_state, in AddWatcherLocked() 464 void NotifyLocked(grpc_connectivity_state state, const absl::Status& status) { in NotifyLocked() 493 void OnConnectivityStateChange(grpc_connectivity_state new_state, in OnConnectivityStateChange() 513 grpc_connectivity_state state_; 523 Subchannel* subchannel, grpc_connectivity_state initial_state, in AddWatcherLocked() [all …]
|
D | channel_connectivity.cc | 33 grpc_connectivity_state grpc_channel_check_connectivity_state( in grpc_channel_check_connectivity_state() 40 grpc_connectivity_state state; in grpc_channel_check_connectivity_state() 72 grpc_connectivity_state state; 216 grpc_channel* channel, grpc_connectivity_state last_observed_state, in grpc_channel_watch_connectivity_state()
|
D | client_channel_channelz.h | 40 void UpdateConnectivityState(grpc_connectivity_state state); 64 Atomic<grpc_connectivity_state> connectivity_state_{GRPC_CHANNEL_IDLE};
|
D | client_channel_channelz.cc | 41 void SubchannelNode::UpdateConnectivityState(grpc_connectivity_state state) { in UpdateConnectivityState() 52 grpc_connectivity_state state = in RenderJson()
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/round_robin/ |
D | round_robin.cc | 88 grpc_connectivity_state connectivity_state() const { in connectivity_state() 97 grpc_connectivity_state connectivity_state); 103 grpc_connectivity_state connectivity_state) override; 105 grpc_connectivity_state last_connectivity_state_ = GRPC_CHANNEL_IDLE; 135 void UpdateStateCountersLocked(grpc_connectivity_state old_state, 136 grpc_connectivity_state new_state); 262 grpc_connectivity_state state = in StartWatchingLocked() 280 grpc_connectivity_state old_state, grpc_connectivity_state new_state) { in UpdateStateCountersLocked() 374 grpc_connectivity_state connectivity_state) { in UpdateConnectivityStateLocked() 409 grpc_connectivity_state connectivity_state) { in ProcessConnectivityChangeLocked()
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | channel_interface.h | 76 virtual grpc_connectivity_state GetState(bool try_to_connect) = 0; 81 void NotifyOnStateChange(grpc_connectivity_state last_observed, T deadline, in NotifyOnStateChange() 90 bool WaitForStateChange(grpc_connectivity_state last_observed, T deadline) { in WaitForStateChange() 98 grpc_connectivity_state state; in WaitForConnected() 139 virtual void NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, 143 virtual bool WaitForStateChangeImpl(grpc_connectivity_state last_observed,
|
D | intercepted_channel.h | 41 grpc_connectivity_state GetState(bool try_to_connect) override { in GetState() 61 void NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, in NotifyOnStateChangeImpl() 67 bool WaitForStateChangeImpl(grpc_connectivity_state last_observed, in WaitForStateChangeImpl()
|
D | delegating_channel.h | 37 grpc_connectivity_state GetState(bool try_to_connect) override { in GetState() 61 void NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, in NotifyOnStateChangeImpl() 69 bool WaitForStateChangeImpl(grpc_connectivity_state last_observed, in WaitForStateChangeImpl()
|
/third_party/grpc/include/grpcpp/ |
D | channel.h | 63 grpc_connectivity_state GetState(bool try_to_connect) override; 95 void NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, 98 bool WaitForStateChangeImpl(grpc_connectivity_state last_observed,
|
D | channel_impl.h | 65 grpc_connectivity_state GetState(bool try_to_connect) override; 97 void NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, 101 bool WaitForStateChangeImpl(grpc_connectivity_state last_observed,
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/ |
D | subchannel_list.h | 98 grpc_connectivity_state CheckConnectivityStateLocked() { in CheckConnectivityStateLocked() 132 grpc_connectivity_state connectivity_state) = 0; 149 void OnConnectivityStateChange(grpc_connectivity_state new_state) override; 171 grpc_connectivity_state connectivity_state_; 241 OnConnectivityStateChange(grpc_connectivity_state new_state) { in OnConnectivityStateChange()
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/weighted_target/ |
D | weighted_target.cc | 132 grpc_connectivity_state connectivity_state() const { in connectivity_state() 149 void UpdateState(grpc_connectivity_state state, 165 grpc_connectivity_state state, const absl::Status& status, 181 grpc_connectivity_state connectivity_state_ = GRPC_CHANNEL_CONNECTING; 364 grpc_connectivity_state connectivity_state; in UpdateStateLocked() 517 grpc_connectivity_state state, const absl::Status& status, in OnConnectivityStateUpdateLocked() 600 grpc_connectivity_state state, const absl::Status& status, in UpdateState()
|
/third_party/grpc/src/cpp/client/ |
D | channel_cc.cc | 167 grpc_connectivity_state Channel::GetState(bool try_to_connect) { in GetState() 189 void Channel::NotifyOnStateChangeImpl(grpc_connectivity_state last_observed, in NotifyOnStateChangeImpl() 197 bool Channel::WaitForStateChangeImpl(grpc_connectivity_state last_observed, in WaitForStateChangeImpl()
|
/third_party/grpc/src/core/ext/filters/client_channel/health/ |
D | health_check_client.h | 149 void SetHealthStatus(grpc_connectivity_state state, const char* reason); 150 void SetHealthStatusLocked(grpc_connectivity_state state,
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/pick_first/ |
D | pick_first.cc | 74 grpc_connectivity_state connectivity_state) override; 215 grpc_connectivity_state state = sd->CheckConnectivityStateLocked(); in AttemptToConnectUsingLatestUpdateArgsLocked() 286 grpc_connectivity_state connectivity_state) { in ProcessConnectivityChangeLocked() 467 grpc_connectivity_state current_state = CheckConnectivityStateLocked(); in CheckConnectivityStateAndStartWatchingLocked()
|
/third_party/grpc/include/grpc/impl/codegen/ |
D | connectivity_state.h | 38 } grpc_connectivity_state; typedef
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/xds/ |
D | xds_cluster_manager.cc | 131 grpc_connectivity_state connectivity_state() const { in connectivity_state() 150 void UpdateState(grpc_connectivity_state state, 177 grpc_connectivity_state connectivity_state_ = GRPC_CHANNEL_IDLE; 326 grpc_connectivity_state connectivity_state; in UpdateStateLocked() 550 grpc_connectivity_state state, const absl::Status& status, in UpdateState()
|
/third_party/grpc/src/core/lib/channel/ |
D | channelz.cc | 150 grpc_connectivity_state state) { in GetChannelConnectivityStateChangeString() 174 grpc_connectivity_state state = in RenderJson() 175 static_cast<grpc_connectivity_state>(state_field >> 1); in RenderJson() 223 void ChannelNode::SetConnectivityState(grpc_connectivity_state state) { in SetConnectivityState()
|
/third_party/grpc/test/core/tsi/alts/handshaker/ |
D | alts_concurrent_connectivity_test.cc | 206 grpc_connectivity_state expected_connectivity_states, in ConnectLoopRunner() 231 grpc_connectivity_state state = in ConnectLoop() 249 grpc_connectivity_state prev_state = state; in ConnectLoop() 279 grpc_connectivity_state expected_connectivity_states_;
|