Home
last modified time | relevance | path

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

/system/netd/server/
DBandwidthController.cpp289 mQuotaIfaces.clear(); in enableBandwidthControl()
471 auto it = mQuotaIfaces.find(iface); in setInterfaceQuota()
473 if (it != mQuotaIfaces.end()) { in setInterfaceQuota()
504 mQuotaIfaces[iface] = QuotaInfo{maxBytes, 0}; in setInterfaceQuota()
535 auto it = mQuotaIfaces.find(iface); in removeInterfaceQuota()
537 if (it == mQuotaIfaces.end()) { in removeInterfaceQuota()
557 mQuotaIfaces.erase(it); in removeInterfaceQuota()
665 auto it = mQuotaIfaces.find(iface); in setInterfaceAlert()
667 if (it == mQuotaIfaces.end()) { in setInterfaceAlert()
681 auto it = mQuotaIfaces.find(iface); in removeInterfaceAlert()
[all …]
DBandwidthController.h133 std::map<std::string, QuotaInfo> mQuotaIfaces; variable