Searched refs:AppendValueOption (Results 1 – 7 of 7) sorted by relevance
/system/connectivity/shill/vpn/ |
D | openvpn_driver.cc | 642 AppendValueOption(kVPNMTUProperty, "mtu", options); in InitOptions() 643 AppendValueOption(kOpenVPNProtoProperty, "proto", options); in InitOptions() 644 AppendValueOption(kOpenVPNPortProperty, "port", options); in InitOptions() 645 AppendValueOption(kOpenVPNTLSAuthProperty, "tls-auth", options); in InitOptions() 661 AppendValueOption(kOpenVPNTLSRemoteProperty, "tls-remote", options); in InitOptions() 662 AppendValueOption(kOpenVPNCipherProperty, "cipher", options); in InitOptions() 663 AppendValueOption(kOpenVPNAuthProperty, "auth", options); in InitOptions() 665 AppendValueOption(kOpenVPNAuthRetryProperty, "auth-retry", options); in InitOptions() 669 AppendValueOption(kOpenVPNRenegSecProperty, "reneg-sec", options); in InitOptions() 670 AppendValueOption(kOpenVPNShaperProperty, "shaper", options); in InitOptions() [all …]
|
D | l2tp_ipsec_driver.cc | 275 AppendValueOption(kL2tpIpsecClientCertIdProperty, in InitOptions() 277 AppendValueOption(kL2tpIpsecClientCertSlotProperty, in InitOptions() 279 AppendValueOption(kL2tpIpsecPinProperty, "--user_pin", options); in InitOptions() 280 AppendValueOption(kL2tpIpsecUserProperty, "--user", options); in InitOptions() 281 AppendValueOption(kL2TPIPSecIPSecTimeoutProperty, "--ipsec_timeout", options); in InitOptions() 282 AppendValueOption(kL2TPIPSecLeftProtoPortProperty, in InitOptions() 286 AppendValueOption(kL2TPIPSecRightProtoPortProperty, in InitOptions() 298 AppendValueOption(kL2tpIpsecTunnelGroupProperty, "--tunnel_group", options); in InitOptions() 370 bool L2TPIPSecDriver::AppendValueOption( in AppendValueOption() function in shill::L2TPIPSecDriver
|
D | l2tp_ipsec_driver.h | 72 FRIEND_TEST(L2TPIPSecDriverTest, AppendValueOption); 122 bool AppendValueOption(const std::string& property,
|
D | l2tp_ipsec_driver_unittest.cc | 444 TEST_F(L2TPIPSecDriverTest, AppendValueOption) { in TEST_F() argument 454 driver_->AppendValueOption( in TEST_F() 459 EXPECT_FALSE(driver_->AppendValueOption(kProperty, kOption, &options)); in TEST_F() 464 EXPECT_TRUE(driver_->AppendValueOption(kProperty, kOption, &options)); in TEST_F() 465 EXPECT_TRUE(driver_->AppendValueOption(kProperty2, kOption2, &options)); in TEST_F()
|
D | openvpn_driver_unittest.cc | 1068 TEST_F(OpenVPNDriverTest, AppendValueOption) { in TEST_F() argument 1071 driver_->AppendValueOption("OpenVPN.UnknownProperty", kOption, &options)); in TEST_F() 1075 EXPECT_FALSE(driver_->AppendValueOption(kProperty, kOption, &options)); in TEST_F() 1080 EXPECT_TRUE(driver_->AppendValueOption(kProperty, kOption, &options)); in TEST_F() 1081 EXPECT_TRUE(driver_->AppendValueOption(kProperty2, kOption2, &options)); in TEST_F()
|
D | openvpn_driver.h | 99 bool AppendValueOption(const std::string& property,
|
D | openvpn_management_server.cc | 124 if (driver_->AppendValueOption(kOpenVPNStaticChallengeProperty, in Start()
|