HomeSort by relevance Sort by last modified time
    Searched refs:VPNDriver (Results 1 - 16 of 16) sorted by null

  /system/connectivity/shill/vpn/
mock_vpn_driver.cc 21 MockVPNDriver::MockVPNDriver() : VPNDriver(nullptr, nullptr, nullptr, 0) {}
vpn_driver.cc 44 static string ObjectID(VPNDriver* v) { return "(vpn_driver)"; }
48 const int VPNDriver::kDefaultConnectTimeoutSeconds = 60;
50 VPNDriver::VPNDriver(EventDispatcher* dispatcher,
61 VPNDriver::~VPNDriver() {}
63 bool VPNDriver::Load(StoreInterface* storage, const string& storage_id) {
94 bool VPNDriver::Save(StoreInterface* storage,
130 void VPNDriver::UnloadCredentials() {
140 void VPNDriver::InitPropertyStore(PropertyStore* store)
    [all...]
mock_vpn_service.cc 25 VPNDriver* driver)
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);
mock_vpn_service.h 32 VPNDriver* driver);
vpn_service.h 31 class VPNDriver;
39 VPNDriver* driver); // Takes ownership of |driver|.
55 VPNDriver* driver() const { return driver_.get(); }
84 std::unique_ptr<VPNDriver> driver_;
mock_vpn_driver.h 28 class MockVPNDriver : public VPNDriver {
third_party_vpn_driver.cc 78 const VPNDriver::Property ThirdPartyVpnDriver::kProperties[] = {
91 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)),
107 VPNDriver::InitPropertyStore(store);
118 bool return_value = VPNDriver::Load(storage, storage_id);
130 bool return_value = VPNDriver::Save(storage, storage_id, save_credentials);
520 VPNDriver::OnConnectTimeout();
l2tp_ipsec_driver.cc 93 const VPNDriver::Property L2TPIPSecDriver::kProperties[] = {
128 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)),
174 VPNDriver::OnConnectTimeout();
505 KeyValueStore props = VPNDriver::GetProvider(error);
vpn_service.cc 57 VPNDriver* driver)
169 Bind(&VPNDriver::OnConnectionDisconnected,
l2tp_ipsec_driver.h 45 class L2TPIPSecDriver : public VPNDriver,
60 // Inherited from VPNDriver.
138 // Inherit from VPNDriver to add custom properties.
third_party_vpn_driver.h 44 class ThirdPartyVpnDriver : public VPNDriver {
74 // Implementation of VPNDriver
openvpn_driver.cc 102 const VPNDriver::Property OpenVPNDriver::kProperties[] = {
169 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)),
    [all...]
vpn_driver_unittest.cc 69 class VPNDriverUnderTest : public VPNDriver {
74 // Inherited from VPNDriver.
103 : VPNDriver(dispatcher, manager, kProperties, arraysize(kProperties)) {}
openvpn_driver.h 52 class OpenVPNDriver : public VPNDriver,
120 // Inherited from VPNDriver. |Connect| initiates the VPN connection by
256 // Inherit from VPNDriver to add custom properties.
vpn_provider.cc 246 std::unique_ptr<VPNDriver> driver;

Completed in 3700 milliseconds