Home
last modified time | relevance | path

Searched refs:update_args (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/weighted_target/
Dweighted_target.cc497 UpdateArgs update_args; in UpdateLocked() local
498 update_args.config = config.config; in UpdateLocked()
499 update_args.addresses = std::move(addresses); in UpdateLocked()
500 update_args.args = grpc_channel_args_copy(args); in UpdateLocked()
509 child_policy_->UpdateLocked(std::move(update_args)); in UpdateLocked()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/xds/
Dxds_cluster_manager.cc478 UpdateArgs update_args; in UpdateLocked() local
479 update_args.config = std::move(config); in UpdateLocked()
480 update_args.addresses = addresses; in UpdateLocked()
481 update_args.args = grpc_channel_args_copy(args); in UpdateLocked()
491 child_policy_->UpdateLocked(std::move(update_args)); in UpdateLocked()
Dxds_cluster_impl.cc522 UpdateArgs update_args; in UpdateChildPolicyLocked() local
523 update_args.addresses = std::move(addresses); in UpdateChildPolicyLocked()
524 update_args.config = config_->child_policy(); in UpdateChildPolicyLocked()
528 update_args.args = grpc_channel_args_copy_and_add(args, &cluster_arg, 1); in UpdateChildPolicyLocked()
535 child_policy_->UpdateLocked(std::move(update_args)); in UpdateChildPolicyLocked()
Dxds_cluster_resolver.cc964 UpdateArgs update_args; in UpdateChildPolicyLocked() local
965 update_args.config = CreateChildPolicyConfigLocked(); in UpdateChildPolicyLocked()
966 if (update_args.config == nullptr) return; in UpdateChildPolicyLocked()
967 update_args.addresses = CreateChildPolicyAddressesLocked(); in UpdateChildPolicyLocked()
968 update_args.args = CreateChildPolicyArgsLocked(args_); in UpdateChildPolicyLocked()
970 child_policy_ = CreateChildPolicyLocked(update_args.args); in UpdateChildPolicyLocked()
976 child_policy_->UpdateLocked(std::move(update_args)); in UpdateChildPolicyLocked()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/priority/
Dpriority.cc557 UpdateArgs update_args; in UpdateLocked() local
558 update_args.config = std::move(config); in UpdateLocked()
559 update_args.addresses = priority_policy_->addresses_[name_]; in UpdateLocked()
560 update_args.args = grpc_channel_args_copy(priority_policy_->args_); in UpdateLocked()
567 child_policy_->UpdateLocked(std::move(update_args)); in UpdateLocked()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/
Dgrpclb.cc1653 UpdateArgs update_args; in CreateOrUpdateChildPolicyLocked() local
1661 update_args.addresses = fallback_backend_addresses_; in CreateOrUpdateChildPolicyLocked()
1663 update_args.addresses = serverlist_->GetServerAddressList( in CreateOrUpdateChildPolicyLocked()
1667 update_args.args = in CreateOrUpdateChildPolicyLocked()
1669 GPR_ASSERT(update_args.args != nullptr); in CreateOrUpdateChildPolicyLocked()
1670 update_args.config = config_->child_policy(); in CreateOrUpdateChildPolicyLocked()
1673 child_policy_ = CreateChildPolicyLocked(update_args.args); in CreateOrUpdateChildPolicyLocked()
1680 child_policy_->UpdateLocked(std::move(update_args)); in CreateOrUpdateChildPolicyLocked()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/
Dclient_channel.cc2172 LoadBalancingPolicy::UpdateArgs update_args; in CreateOrUpdateLbPolicyLocked() local
2173 update_args.addresses = std::move(result.addresses); in CreateOrUpdateLbPolicyLocked()
2174 update_args.config = std::move(lb_policy_config); in CreateOrUpdateLbPolicyLocked()
2179 update_args.args = in CreateOrUpdateLbPolicyLocked()
2183 lb_policy_ = CreateLbPolicyLocked(*update_args.args); in CreateOrUpdateLbPolicyLocked()
2190 lb_policy_->UpdateLocked(std::move(update_args)); in CreateOrUpdateLbPolicyLocked()