HomeSort by relevance Sort by last modified time
    Searched refs:service_path (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/chromium_org/chromeos/network/
network_activation_handler.cc 24 const std::string& service_path,
28 NET_LOG_USER("ActivateNetwork", service_path);
29 CallShillActivate(service_path, carrier, success_callback, error_callback);
33 const std::string& service_path,
36 NET_LOG_USER("CompleteActivation", service_path);
37 CallShillCompleteActivation(service_path, success_callback, error_callback);
41 const std::string& service_path,
45 NET_LOG_USER("Activation Request", service_path + ": '" + carrier + "'");
47 dbus::ObjectPath(service_path),
50 AsWeakPtr(), service_path, success_callback)
    [all...]
network_connection_handler.cc 35 void InvokeErrorCallback(const std::string& service_path,
38 NET_LOG_ERROR("Connect Error: " + error_name, service_path);
40 error_callback, service_path, error_name, "");
51 bool VPNRequiresCredentials(const std::string& service_path,
59 NET_LOG_EVENT("OpenVPN: No username", service_path);
66 NET_LOG_EVENT("OpenVPN: Passphrase Required", service_path);
69 NET_LOG_EVENT("OpenVPN Is Configured", service_path);
75 NET_LOG_EVENT("VPN: PSK Required", service_path);
81 NET_LOG_EVENT("VPN: Passphrase Required", service_path);
84 NET_LOG_EVENT("VPN Is Configured", service_path);
143 std::string service_path; member in struct:chromeos::NetworkConnectionHandler::ConnectRequest
587 std::string service_path = queued_connect_->service_path; local
    [all...]
network_connection_handler.h 54 // No network matching |service_path| is found (hidden networks must be
106 void ConnectToNetwork(const std::string& service_path,
114 // kErrorNotFound if no network matching |service_path| is found.
118 void DisconnectNetwork(const std::string& service_path,
122 // Returns true if ConnectToNetwork has been called with |service_path| and
124 bool HasConnectingNetwork(const std::string& service_path);
156 ConnectRequest* GetPendingRequest(const std::string& service_path);
161 // pending_requests_[service_path]. |check_error_state| is passed from
164 const std::string& service_path,
168 void QueueConnectRequest(const std::string& service_path);
    [all...]
network_activation_handler.h 34 // kErrorNotFound if no network matching |service_path| is found.
36 void Activate(const std::string& service_path,
45 // kErrorNotFound if no network matching |service_path| is found.
47 void CompleteActivation(const std::string& service_path,
57 void CallShillActivate(const std::string& service_path,
64 const std::string& service_path,
70 void HandleShillSuccess(const std::string& service_path,
network_configuration_handler.cc 42 void InvokeErrorCallback(const std::string& service_path,
46 NET_LOG_ERROR(error_msg, service_path);
48 error_callback, service_path, error_name, error_msg);
54 const std::string& service_path,
61 service_path,
72 shill_property_util::GetNameFromProperties(service_path, properties);
75 callback.Run(service_path, *properties_copy.get());
79 const std::string& service_path,
86 service_path, error_callback,
112 const std::string& service_path,
    [all...]
network_configuration_handler.h 57 // Gets the properties of the network with id |service_path|. See note on
60 const std::string& service_path,
64 // Sets the properties of the network with id |service_path|. This means the
69 const std::string& service_path,
80 void ClearProperties(const std::string& service_path,
86 // profile, and returns the new service_path to |callback| if successful.
96 // Removes the network |service_path| from any profiles that include it.
99 const std::string& service_path,
103 // Changes the profile for the network |service_path| to |profile_path|.
105 void SetNetworkProfile(const std::string& service_path,
    [all...]
network_configuration_handler_unittest.cc 50 const std::string& service_path,
54 EXPECT_EQ(expected_id, service_path);
142 void OnSetProperties(const dbus::ObjectPath& service_path,
151 const dbus::ObjectPath& service_path,
163 const dbus::ObjectPath& service_path,
181 const dbus::ObjectPath& service_path,
197 bool PendingProfileEntryDeleterForTest(const std::string& service_path) {
199 PendingProfileEntryDeleterForTest(service_path);
213 std::string service_path = "/service/1"; local
224 SetProperty(dbus::ObjectPath(service_path), key
248 std::string service_path = "\/service\/1"; local
270 std::string service_path = "\/service\/1"; local
307 std::string service_path = "\/service\/1"; local
368 std::string service_path = "\/service\/1"; local
    [all...]
network_policy_observer.h 22 virtual void PolicyApplied(const std::string& service_path) {};
managed_network_configuration_handler_impl.h 44 const std::string& service_path,
50 const std::string& service_path,
55 const std::string& service_path,
67 const std::string& service_path,
111 typedef base::Callback<void(const std::string& service_path,
129 const std::string& service_path,
136 const std::string& service_path,
142 void OnPolicyAppliedToNetwork(const std::string& service_path);
145 void GetDeviceStateProperties(const std::string& service_path,
156 const std::string& service_path,
    [all...]
network_cert_migrator.cc 85 const std::string& service_path = (*it)->path(); local
87 dbus::ObjectPath(service_path),
91 service_path));
95 void MigrateNetwork(const std::string& service_path,
103 MigrateClientCertProperties(service_path, properties, &new_properties);
104 MigrateNssProperties(service_path, properties, &new_properties);
108 SendPropertiesToShill(service_path, new_properties);
111 void MigrateClientCertProperties(const std::string& service_path,
134 "configuration from network " << service_path;
145 VLOG(1) << "Network " << service_path
165 << ", network: " << service_path; local
    [all...]
managed_network_configuration_handler.h 59 // Provides the properties of the network with |service_path| to |callback|.
61 const std::string& service_path,
65 // Provides the managed properties of the network with |service_path| to
70 const std::string& service_path,
75 // |service_path|. A network can be initially configured by calling
80 const std::string& service_path,
96 // Removes the user's configuration from the network with |service_path|. The
100 const std::string& service_path,
  /external/chromium_org/ash/system/chromeos/network/
network_portal_detector_observer.h 17 virtual void OnCaptivePortalDetected(const std::string& service_path) = 0;
network_connect.h 30 ASH_EXPORT void ConnectToNetwork(const std::string& service_path);
40 ASH_EXPORT void ActivateCellular(const std::string& service_path);
44 ASH_EXPORT void ShowMobileSetup(const std::string& service_path);
49 const std::string& service_path,
66 const std::string& service_path);
68 // Shows the settings for the network specified by |service_path|. If empty,
70 ASH_EXPORT void ShowNetworkSettings(const std::string& service_path);
network_connect.cc 63 const std::string& service_path) {
65 ShowNetworkConnectError(error_name, service_path);
68 void HandleUnconfiguredNetwork(const std::string& service_path) {
70 GetNetworkState(service_path);
72 NET_LOG_ERROR("Configuring unknown network", service_path);
80 ShowNetworkConfigure(service_path);
88 ShowNetworkConfigure(service_path);
94 ash::network_connect::ActivateCellular(service_path);
98 ash::network_connect::ShowMobileSetup(service_path);
104 ShowNetworkSettings(service_path);
    [all...]
network_state_notifier.h 52 const std::string& service_path);
57 const std::string& service_path,
61 const std::string& service_path,
66 const std::string& service_path,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
mobile_setup_dialog.h 15 static void Show(const std::string& service_path);
  /external/chromium_org/chromeos/dbus/
mock_shill_service_client.h 23 void(const dbus::ObjectPath& service_path,
26 void(const dbus::ObjectPath& service_path,
28 MOCK_METHOD2(GetProperties, void(const dbus::ObjectPath& service_path,
30 MOCK_METHOD5(SetProperty, void(const dbus::ObjectPath& service_path,
35 MOCK_METHOD4(SetProperties, void(const dbus::ObjectPath& service_path,
39 MOCK_METHOD4(ClearProperty, void(const dbus::ObjectPath& service_path,
43 MOCK_METHOD4(ClearProperties, void(const dbus::ObjectPath& service_path,
47 MOCK_METHOD3(Connect, void(const dbus::ObjectPath& service_path,
50 MOCK_METHOD3(Disconnect, void(const dbus::ObjectPath& service_path,
53 MOCK_METHOD3(Remove, void(const dbus::ObjectPath& service_path,
    [all...]
fake_shill_service_client.h 31 const dbus::ObjectPath& service_path,
34 const dbus::ObjectPath& service_path,
36 virtual void GetProperties(const dbus::ObjectPath& service_path,
38 virtual void SetProperty(const dbus::ObjectPath& service_path,
43 virtual void SetProperties(const dbus::ObjectPath& service_path,
47 virtual void ClearProperty(const dbus::ObjectPath& service_path,
51 virtual void ClearProperties(const dbus::ObjectPath& service_path,
55 virtual void Connect(const dbus::ObjectPath& service_path,
58 virtual void Disconnect(const dbus::ObjectPath& service_path,
61 virtual void Remove(const dbus::ObjectPath& service_path,
    [all...]
fake_shill_service_client.cc 67 const dbus::ObjectPath& service_path,
69 GetObserverList(service_path).AddObserver(observer);
73 const dbus::ObjectPath& service_path,
75 GetObserverList(service_path).RemoveObserver(observer);
79 const dbus::ObjectPath& service_path,
84 stub_services_.GetDictionaryWithoutPathExpansion(service_path.value(),
94 VLOG(2) << "Properties not found for: " << service_path.value();
107 void FakeShillServiceClient::SetProperty(const dbus::ObjectPath& service_path,
112 if (!SetServiceProperty(service_path.value(), name, value)) {
113 LOG(ERROR) << "Service not found: " << service_path.value()
422 << " For: " << service_path; local
    [all...]
shill_service_client.h 47 virtual void AddService(const std::string& service_path,
53 virtual void AddServiceWithIPConfig(const std::string& service_path,
63 const std::string& service_path,
71 virtual void RemoveService(const std::string& service_path) = 0;
73 // Returns false if a Service matching |service_path| does not exist.
74 virtual bool SetServiceProperty(const std::string& service_path,
78 // Returns properties for |service_path| or NULL if no Service matches.
80 const std::string& service_path) const = 0;
85 virtual void SetConnectBehavior(const std::string& service_path,
97 // Adds a property changed |observer| to the service at |service_path|
    [all...]
shill_service_client.cc 32 const dbus::ObjectPath& service_path,
38 " for: " + service_path.value() + ": " +
73 const dbus::ObjectPath& service_path,
75 GetHelper(service_path)->AddPropertyChangedObserver(observer);
79 const dbus::ObjectPath& service_path,
81 GetHelper(service_path)->RemovePropertyChangedObserver(observer);
84 virtual void GetProperties(const dbus::ObjectPath& service_path,
88 GetHelper(service_path)->CallDictionaryValueMethodWithErrorCallback(
92 service_path, callback));
95 virtual void SetProperty(const dbus::ObjectPath& service_path,
    [all...]
bluetooth_gatt_manager_client.h 36 // D-Bus object path |service_path| with the remote GATT manager. The local
46 virtual void RegisterService(const dbus::ObjectPath& service_path,
51 // Unregisters the GATT service with the D-Bus object path |service_path| from
53 virtual void UnregisterService(const dbus::ObjectPath& service_path,
fake_shill_profile_client.cc 152 const std::string& service_path) {
157 << " for: " << service_path; local
160 if (profile->entries.HasKey(service_path))
162 return AddOrUpdateServiceImpl(profile_path, service_path, profile);
166 const std::string& service_path) {
171 << " for: " << service_path; local
174 if (!profile->entries.HasKey(service_path)) {
176 << " does not contain Service: " << service_path; local
179 return AddOrUpdateServiceImpl(profile_path, service_path, profile);
184 const std::string& service_path,
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
enrollment_dialog_view.h 20 bool CreateDialog(const std::string& service_path,
  /external/chromium_org/ui/chromeos/network/
network_info.cc 13 : service_path(path), disable(false), highlight(false) {

Completed in 394 milliseconds

1 2 3 4 5