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

  /external/grpc-grpc/src/cpp/server/load_reporter/
load_data_store.cc 80 LoadRecordKey::LoadRecordKey(const grpc::string& client_ip_and_token,
83 GPR_ASSERT(client_ip_and_token.size() >= 2);
85 GPR_ASSERT(sscanf(client_ip_and_token.substr(0, 2).c_str(), "%d",
90 client_ip_hex_ = client_ip_and_token.substr(cur_pos, ip_hex_size);
92 if (client_ip_and_token.size() - cur_pos < kLbIdLength) {
96 lb_id_ = client_ip_and_token.substr(cur_pos, kLbIdLength);
97 lb_tag_ = client_ip_and_token.substr(cur_pos + kLbIdLength);
load_reporter.cc 404 const grpc::string& client_ip_and_token = tag_values[0]; local
407 LoadRecordKey key(client_ip_and_token, user_id);
426 const grpc::string& client_ip_and_token = tag_values[0]; local
433 if (client_ip_and_token.size() == 0) {
436 "client_ip_and_token tag.");
439 LoadRecordKey key(client_ip_and_token, user_id);
477 const grpc::string& client_ip_and_token = tag_values[0]; local
481 LoadRecordKey key(client_ip_and_token, user_id);
load_data_store.h 77 // Parses the input client_ip_and_token to set client IP, LB ID, and LB tag.
78 LoadRecordKey(const grpc::string& client_ip_and_token, grpc::string user_id);

Completed in 661 milliseconds