Home
last modified time | relevance | path

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

/system/netd/server/
DBandwidthController.cpp599 std::string quotaCmd; in setInterfaceSharedQuota() local
631 quotaCmd = makeIptablesQuotaCmd(IptOpInsert, costName, maxBytes); in setInterfaceSharedQuota()
632 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in setInterfaceSharedQuota()
693 std::string quotaCmd; in removeInterfaceSharedQuota() local
694 quotaCmd = makeIptablesQuotaCmd(IptOpDelete, costName, sharedQuotaBytes); in removeInterfaceSharedQuota()
695 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in removeInterfaceSharedQuota()
711 std::string quotaCmd; in setInterfaceQuota() local
746 quotaCmd = makeIptablesQuotaCmd(IptOpAppend, costName, maxBytes); in setInterfaceQuota()
747 res |= runIpxtablesCmd(quotaCmd.c_str(), IptJumpReject); in setInterfaceQuota()