Lines Matching refs:protoField

87         std::smatch protoField;  in fromNetworkDnsEventReportedStr()  local
88 std::regex_match(match_str, protoField, pieces_regex); in fromNetworkDnsEventReportedStr()
90 LOG(DEBUG) << "Str:" << match_str << " Name:" << protoField[1] in fromNetworkDnsEventReportedStr()
91 << " Value:" << protoField[2]; in fromNetworkDnsEventReportedStr()
94 if (protoField[1] == "event_type" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
96 } else if (protoField[1] == "return_code" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
98 } else if (protoField[1] == "latency_micros" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
100 } else if (protoField[1] == "hints_ai_flags" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
102 } else if (protoField[1] == "res_nsend_flags" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
104 } else if (protoField[1] == "network_type" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
106 } else if (protoField[1] == "private_dns_modes" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
108 } else if (protoField[1] == "sampling_rate_denom" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
110 } else if (protoField[1] == "uid" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
117 if (protoField[1] == "rcode" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
119 } else if (protoField[1] == "type" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
121 } else if (protoField[1] == "cache_hit" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
123 } else if (protoField[1] == "ip_version" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
125 } else if (protoField[1] == "protocol" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
127 } else if (protoField[1] == "retry_times" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
129 } else if (protoField[1] == "dns_server_index" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
131 } else if (protoField[1] == "connected" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
133 } else if (protoField[1] == "latency_micros" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()
135 } else if (protoField[1] == "linux_errno" && ParseInt(protoField[2], &value)) { in fromNetworkDnsEventReportedStr()