Home
last modified time | relevance | path

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

/system/netd/server/
DBandwidthController.cpp318 mQuotaIfaces.clear(); in enableBandwidthControl()
534 auto it = mQuotaIfaces.find(iface); in setInterfaceQuota()
536 if (it != mQuotaIfaces.end()) { in setInterfaceQuota()
567 mQuotaIfaces[iface] = QuotaInfo{maxBytes, 0}; in setInterfaceQuota()
598 auto it = mQuotaIfaces.find(iface); in removeInterfaceQuota()
600 if (it == mQuotaIfaces.end()) { in removeInterfaceQuota()
620 mQuotaIfaces.erase(it); in removeInterfaceQuota()
728 auto it = mQuotaIfaces.find(iface); in setInterfaceAlert()
730 if (it == mQuotaIfaces.end()) { in setInterfaceAlert()
744 auto it = mQuotaIfaces.find(iface); in removeInterfaceAlert()
[all …]
DBandwidthController.h141 std::map<std::string, QuotaInfo> mQuotaIfaces; variable