Home
last modified time | relevance | path

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

/system/netd/server/
DBandwidthController.cpp483 std::string quotaCmd; in setInterfaceSharedQuota() local
515 quotaCmd = makeIptablesQuotaCmd(IptFullOpInsert, costName, maxBytes); in setInterfaceSharedQuota()
516 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in setInterfaceSharedQuota()
577 std::string quotaCmd; in removeInterfaceSharedQuota() local
578 quotaCmd = makeIptablesQuotaCmd(IptFullOpDelete, costName, sharedQuotaBytes); in removeInterfaceSharedQuota()
579 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in removeInterfaceSharedQuota()
595 std::string quotaCmd; in setInterfaceQuota() local
630 quotaCmd = makeIptablesQuotaCmd(IptFullOpAppend, costName, maxBytes); in setInterfaceQuota()
631 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in setInterfaceQuota()