HomeSort by relevance Sort by last modified time
    Searched defs:lb_id (Results 1 - 3 of 3) sorted by null

  /external/grpc-grpc/test/cpp/end2end/
server_load_reporting_end2end_test.cc 93 void ClientMakeEchoCalls(const grpc::string& lb_id,
98 grpc::string lb_token = lb_id + lb_tag;
142 const grpc::string& lb_id = response.initial_response().load_balancer_id(); local
143 gpr_log(GPR_INFO, "Initial response received (lb_id: %s).", lb_id.c_str());
144 ClientMakeEchoCalls(lb_id, "LB_TAG", kOkMessage, 1);
  /external/grpc-grpc/src/cpp/server/load_reporter/
load_data_store.h 70 LoadRecordKey(grpc::string lb_id, grpc::string lb_tag, grpc::string user_id,
72 : lb_id_(std::move(lb_id)),
95 const grpc::string& lb_id() const { return lb_id_; } function in class:grpc::load_reporter::LoadRecordKey
200 PerBalancerStore(grpc::string lb_id, grpc::string load_key)
201 : lb_id_(std::move(lb_id)), load_key_(std::move(load_key)) {}
228 const grpc::string& lb_id() const { return lb_id_; } function in class:grpc::load_reporter::PerBalancerStore
249 void ReportStreamCreated(const grpc::string& lb_id,
257 void ReportStreamClosed(const grpc::string& lb_id);
260 PerBalancerStore* FindPerBalancerStore(const grpc::string& lb_id) const;
262 // Returns null if lb_id is not found. The returned pointer points to th
    [all...]
load_reporter.cc 224 int64_t lb_id = next_lb_id_++; local
226 GPR_ASSERT(lb_id >= 0);
229 snprintf(buf, sizeof(buf), "%08lx", lb_id);
292 const grpc::string& lb_id) {
294 auto assigned_stores = load_data_store_.GetAssignedStores(hostname, lb_id);
330 if (per_balancer_store->lb_id() != lb_id) {
342 if (per_balancer_store->lb_id() != lb_id) {
354 if (per_balancer_store.lb_id() == kInvalidLbId)
    [all...]

Completed in 267 milliseconds