Searched refs:client_ip_and_token (Results 1 – 3 of 3) sorted by relevance
/external/grpc-grpc/src/cpp/server/load_reporter/ |
D | load_data_store.cc | 80 LoadRecordKey::LoadRecordKey(const grpc::string& client_ip_and_token, in LoadRecordKey() argument 83 GPR_ASSERT(client_ip_and_token.size() >= 2); in LoadRecordKey() 85 GPR_ASSERT(sscanf(client_ip_and_token.substr(0, 2).c_str(), "%d", in LoadRecordKey() 90 client_ip_hex_ = client_ip_and_token.substr(cur_pos, ip_hex_size); in LoadRecordKey() 92 if (client_ip_and_token.size() - cur_pos < kLbIdLength) { in LoadRecordKey() 96 lb_id_ = client_ip_and_token.substr(cur_pos, kLbIdLength); in LoadRecordKey() 97 lb_tag_ = client_ip_and_token.substr(cur_pos + kLbIdLength); in LoadRecordKey()
|
D | load_reporter.cc | 404 const grpc::string& client_ip_and_token = tag_values[0]; in ProcessViewDataCallStart() local 407 LoadRecordKey key(client_ip_and_token, user_id); in ProcessViewDataCallStart() 426 const grpc::string& client_ip_and_token = tag_values[0]; in ProcessViewDataCallEnd() local 433 if (client_ip_and_token.size() == 0) { in ProcessViewDataCallEnd() 439 LoadRecordKey key(client_ip_and_token, user_id); in ProcessViewDataCallEnd() 477 const grpc::string& client_ip_and_token = tag_values[0]; in ProcessViewDataOtherCallMetrics() local 481 LoadRecordKey key(client_ip_and_token, user_id); in ProcessViewDataOtherCallMetrics()
|
D | load_data_store.h | 78 LoadRecordKey(const grpc::string& client_ip_and_token, grpc::string user_id);
|