Home
last modified time | relevance | path

Searched refs:VPNDriver (Results 1 – 16 of 16) sorted by relevance

/system/connectivity/shill/vpn/
Dvpn_driver.cc44 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 …]
Dvpn_driver.h40 class VPNDriver {
42 virtual ~VPNDriver();
81 VPNDriver(EventDispatcher* dispatcher,
120 base::WeakPtrFactory<VPNDriver> weak_ptr_factory_;
130 DISALLOW_COPY_AND_ASSIGN(VPNDriver);
Dvpn_service.h31 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_;
Dmock_vpn_driver.cc21 MockVPNDriver::MockVPNDriver() : VPNDriver(nullptr, nullptr, nullptr, 0) {} in MockVPNDriver()
Dmock_vpn_service.cc25 VPNDriver* driver) in MockVPNService()
Dmock_vpn_service.h32 VPNDriver* driver);
Dthird_party_vpn_driver.cc78 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()
Dmock_vpn_driver.h28 class MockVPNDriver : public VPNDriver {
Dl2tp_ipsec_driver.cc93 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()
Dvpn_service.cc57 VPNDriver* driver) in VPNService()
169 Bind(&VPNDriver::OnConnectionDisconnected, in SetConnection()
Dl2tp_ipsec_driver.h45 class L2TPIPSecDriver : public VPNDriver,
Dthird_party_vpn_driver.h44 class ThirdPartyVpnDriver : public VPNDriver {
Dopenvpn_driver.cc102 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()
Dvpn_driver_unittest.cc69 class VPNDriverUnderTest : public VPNDriver {
103 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)) {} in VPNDriverUnderTest()
Dopenvpn_driver.h52 class OpenVPNDriver : public VPNDriver,
Dvpn_provider.cc246 std::unique_ptr<VPNDriver> driver; in CreateServiceInner()