Home
last modified time | relevance | path

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

/system/connectivity/shill/vpn/
Dl2tp_ipsec_driver_unittest.cc617 EXPECT_TRUE(props.LookupBool(kPassphraseRequiredProperty, false)); in TEST_F()
618 EXPECT_TRUE(props.LookupBool(kL2tpIpsecPskRequiredProperty, false)); in TEST_F()
626 EXPECT_TRUE(props.LookupBool(kPassphraseRequiredProperty, false)); in TEST_F()
627 EXPECT_FALSE(props.LookupBool(kL2tpIpsecPskRequiredProperty, true)); in TEST_F()
637 EXPECT_FALSE(props.LookupBool(kPassphraseRequiredProperty, true)); in TEST_F()
639 props.LookupBool(kL2tpIpsecPskRequiredProperty, true)); in TEST_F()
Dopenvpn_driver_unittest.cc1342 EXPECT_TRUE(props.LookupBool(kPassphraseRequiredProperty, false)); in TEST_F()
1346 EXPECT_FALSE(props.LookupBool(kPassphraseRequiredProperty, true)); in TEST_F()
1352 EXPECT_TRUE(props.LookupBool(kPassphraseRequiredProperty, false)); in TEST_F()
1356 EXPECT_FALSE(props.LookupBool(kPassphraseRequiredProperty, true)); in TEST_F()
/system/connectivity/shill/
Dkey_value_store.h132 bool LookupBool(const std::string& name, bool default_value) const;
Dkey_value_store_unittest.cc52 EXPECT_EQ(kDefaultValue, store_.LookupBool(kKey, kDefaultValue)); in TEST_F()
59 static_cast<int>(store_.LookupBool(kKey, kDefaultValue))); in TEST_F()
Dkey_value_store.cc380 bool KeyValueStore::LookupBool(const string& name, bool default_value) const { in LookupBool() function in shill::KeyValueStore
/system/connectivity/shill/wifi/
Dwifi_provider.cc632 *hidden_ssid = args.LookupBool(kWifiHiddenSsid, true); in GetServiceParametersFromArgs()