Home
last modified time | relevance | path

Searched refs:mQuotaIfaces (Results 1 – 2 of 2) sorted by relevance

/system/netd/server/
DBandwidthController.cpp298 mQuotaIfaces.clear(); in enableBandwidthControl()
516 auto it = mQuotaIfaces.find(iface); in setInterfaceQuota()
518 if (it != mQuotaIfaces.end()) { in setInterfaceQuota()
550 mQuotaIfaces[iface] = QuotaInfo{maxBytes, 0}; in setInterfaceQuota()
581 auto it = mQuotaIfaces.find(iface); in removeInterfaceQuota()
583 if (it == mQuotaIfaces.end()) { in removeInterfaceQuota()
603 mQuotaIfaces.erase(it); in removeInterfaceQuota()
711 auto it = mQuotaIfaces.find(iface); in setInterfaceAlert()
713 if (it == mQuotaIfaces.end()) { in setInterfaceAlert()
727 auto it = mQuotaIfaces.find(iface); in removeInterfaceAlert()
[all …]
DBandwidthController.h141 std::map<std::string, QuotaInfo> mQuotaIfaces; variable