Searched refs:dflt (Results 1 – 3 of 3) sorted by relevance
64 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() argument123 [this](const std::string& key, const std::string& dflt) { in __anon702b019e0602() argument124 return mProperties.get(key, dflt); in __anon702b019e0602()
68 std::function<std::string(const std::string& key, const std::string& dflt)>;
179 std::string getProperty(const std::string& key, const std::string& dflt) { in getProperty() argument180 return android::base::GetProperty(key, dflt); in getProperty()