Home
last modified time | relevance | path

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

/system/netd/server/
DNetwork.cpp26 if (!mInterfaces.empty()) { in ~Network()
36 return mInterfaces.find(interface) != mInterfaces.end(); in hasInterface()
40 return mInterfaces; in getInterfaces()
44 while (!mInterfaces.empty()) { in clearInterfaces()
47 std::string interface = *mInterfaces.begin(); in clearInterfaces()
79 if (mInterfaces.size() > 0) { in toString()
80 repr << kSeparator << android::base::Join(mInterfaces, ","); in toString()
DTetherController.cpp74 mInterfaces = new InterfaceCollection(); in TetherController()
89 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { in ~TetherController()
92 mInterfaces->clear(); in ~TetherController()
290 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { in applyDnsInterfaces()
318 mInterfaces->push_back(strdup(interface)); in tetherInterface()
322 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { in tetherInterface()
325 mInterfaces->erase(it); in tetherInterface()
340 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { in untetherInterface()
343 mInterfaces->erase(it); in untetherInterface()
353 return mInterfaces; in getTetheredInterfaceList()
DPhysicalNetwork.cpp72 for (const std::string& interface : mInterfaces) { in setPermission()
81 for (const std::string& interface : mInterfaces) { in setPermission()
98 for (const std::string& interface : mInterfaces) { in addAsDefault()
111 for (const std::string& interface : mInterfaces) { in removeAsDefault()
138 mInterfaces.insert(interface); in addInterface()
160 mInterfaces.erase(interface); in removeInterface()
DVirtualNetwork.cpp69 for (const std::string& interface : mInterfaces) { in addUsers()
84 for (const std::string& interface : mInterfaces) { in removeUsers()
108 mInterfaces.insert(interface); in addInterface()
121 mInterfaces.erase(interface); in removeInterface()
DLocalNetwork.cpp42 mInterfaces.insert(interface); in addInterface()
54 mInterfaces.erase(interface); in removeInterface()
DDummyNetwork.cpp28 mInterfaces.insert(INTERFACE_NAME); in DummyNetwork()
DNetwork.h57 std::set<std::string> mInterfaces; variable
DTetherController.h30 InterfaceCollection *mInterfaces; variable