Searched refs:VPNDriver (Results 1 – 16 of 16) sorted by relevance
/system/connectivity/shill/vpn/ |
D | vpn_driver.cc | 44 static string ObjectID(VPNDriver* v) { return "(vpn_driver)"; } in ObjectID() 48 const int VPNDriver::kDefaultConnectTimeoutSeconds = 60; 50 VPNDriver::VPNDriver(EventDispatcher* dispatcher, in VPNDriver() function in shill::VPNDriver 61 VPNDriver::~VPNDriver() {} in ~VPNDriver() 63 bool VPNDriver::Load(StoreInterface* storage, const string& storage_id) { in Load() 94 bool VPNDriver::Save(StoreInterface* storage, in Save() 130 void VPNDriver::UnloadCredentials() { in UnloadCredentials() 140 void VPNDriver::InitPropertyStore(PropertyStore* store) { in InitPropertyStore() 147 new CustomMappedAccessor<VPNDriver, Strings, size_t>( in InitPropertyStore() 149 &VPNDriver::ClearMappedStringsProperty, in InitPropertyStore() [all …]
|
D | vpn_driver.h | 40 class VPNDriver { 42 virtual ~VPNDriver(); 81 VPNDriver(EventDispatcher* dispatcher, 120 base::WeakPtrFactory<VPNDriver> weak_ptr_factory_; 130 DISALLOW_COPY_AND_ASSIGN(VPNDriver);
|
D | vpn_service.h | 31 class VPNDriver; variable 39 VPNDriver* driver); // Takes ownership of |driver|. 55 VPNDriver* driver() const { return driver_.get(); } in driver() 84 std::unique_ptr<VPNDriver> driver_;
|
D | mock_vpn_driver.cc | 21 MockVPNDriver::MockVPNDriver() : VPNDriver(nullptr, nullptr, nullptr, 0) {} in MockVPNDriver()
|
D | mock_vpn_service.cc | 25 VPNDriver* driver) in MockVPNService()
|
D | mock_vpn_service.h | 32 VPNDriver* driver);
|
D | third_party_vpn_driver.cc | 78 const VPNDriver::Property ThirdPartyVpnDriver::kProperties[] = { 91 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)), in ThirdPartyVpnDriver() 107 VPNDriver::InitPropertyStore(store); in InitPropertyStore() 118 bool return_value = VPNDriver::Load(storage, storage_id); in Load() 130 bool return_value = VPNDriver::Save(storage, storage_id, save_credentials); in Save() 520 VPNDriver::OnConnectTimeout(); in OnConnectTimeout()
|
D | mock_vpn_driver.h | 28 class MockVPNDriver : public VPNDriver {
|
D | l2tp_ipsec_driver.cc | 93 const VPNDriver::Property L2TPIPSecDriver::kProperties[] = { 128 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)), in L2TPIPSecDriver() 174 VPNDriver::OnConnectTimeout(); in OnConnectTimeout() 505 KeyValueStore props = VPNDriver::GetProvider(error); in GetProvider()
|
D | vpn_service.cc | 57 VPNDriver* driver) in VPNService() 169 Bind(&VPNDriver::OnConnectionDisconnected, in SetConnection()
|
D | l2tp_ipsec_driver.h | 45 class L2TPIPSecDriver : public VPNDriver,
|
D | third_party_vpn_driver.h | 44 class ThirdPartyVpnDriver : public VPNDriver {
|
D | openvpn_driver.cc | 102 const VPNDriver::Property OpenVPNDriver::kProperties[] = { 169 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)), in OpenVPNDriver() 964 VPNDriver::OnConnectTimeout(); in OnConnectTimeout() 1013 KeyValueStore props = VPNDriver::GetProvider(error); in GetProvider()
|
D | vpn_driver_unittest.cc | 69 class VPNDriverUnderTest : public VPNDriver { 103 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)) {} in VPNDriverUnderTest()
|
D | openvpn_driver.h | 52 class OpenVPNDriver : public VPNDriver,
|
D | vpn_provider.cc | 246 std::unique_ptr<VPNDriver> driver; in CreateServiceInner()
|