Home
last modified time | relevance | path

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

/system/netd/server/
DInterfaceControllerTest.cpp64 MOCK_CONST_METHOD2(get, std::string(const std::string& key, const std::string& dflt));
92 .WillOnce(Invoke([](const std::string&, const std::string& dflt) { return dflt; })); in expectGetPropertyDefault() argument
123 [this](const std::string& key, const std::string& dflt) { in __anon702b019e0602() argument
124 return mProperties.get(key, dflt); in __anon702b019e0602()
DInterfaceController.h68 std::function<std::string(const std::string& key, const std::string& dflt)>;
DInterfaceController.cpp179 std::string getProperty(const std::string& key, const std::string& dflt) { in getProperty() argument
180 return android::base::GetProperty(key, dflt); in getProperty()