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

1 2

  /external/chromium_org/chromeos/dbus/
shill_manager_client_unittest.cc 372 std::string service_path = "/"; local
373 dbus::ObjectPath service_path_obj(service_path);
392 service_path,
shill_service_client_stub.cc 70 const dbus::ObjectPath& service_path,
72 GetObserverList(service_path).AddObserver(observer);
76 const dbus::ObjectPath& service_path,
78 GetObserverList(service_path).RemoveObserver(observer);
82 const dbus::ObjectPath& service_path,
87 stub_services_.GetDictionaryWithoutPathExpansion(service_path.value(),
108 void ShillServiceClientStub::SetProperty(const dbus::ObjectPath& service_path,
113 if (!SetServiceProperty(service_path.value(), name, value)) {
114 LOG(ERROR) << "Service not found: " << service_path.value();
122 const dbus::ObjectPath& service_path,
393 << " For: " << service_path; local
    [all...]
shill_manager_client_stub.cc 50 std::string service_path; local
51 if (!(*iter)->GetAsString(&service_path))
54 service_client->GetServiceProperties(service_path);
56 LOG(ERROR) << "Properties not found for service: " << service_path;
70 active_service_list_out->push_back(service_path);
72 inactive_service_list_out->push_back(service_path);
226 std::string service_path = guid; local
233 service_client->GetServiceProperties(service_path);
237 service_client->AddServiceWithIPConfig(service_path, guid, type,
241 existing_properties = service_client->GetServiceProperties(service_path);
614 std::string service_path; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
core_chromeos_options_handler.cc 224 std::string service_path; local
226 !args->GetString(0, &service_path)) {
230 proxy_config_service_.SetCurrentNetwork(service_path);
  /external/chromium_org/chromeos/network/
network_cert_migrator.cc 68 const std::string& service_path = (*it)->path(); local
70 dbus::ObjectPath(service_path),
74 service_path));
78 void MigrateNetwork(const std::string& service_path,
95 << ", network: " << service_path; local
101 ClearNssProperty(service_path, nss_key);
119 SetNssAndPemProperties(service_path, nss_key, pem_key, pem_encoded);
161 void ClearNssProperty(const std::string& service_path,
164 ->SetProperty(dbus::ObjectPath(service_path),
170 service_path,
    [all...]
network_change_notifier_chromeos_unittest.cc 31 const char* service_path; member in struct:chromeos::__anon9710::NotifierState
40 const char* service_path; member in struct:chromeos::__anon9710::DefaultNetworkState
111 notifier_.service_path_ = notifier_state.service_path;
120 EXPECT_EQ(notifier_state.service_path, notifier_.service_path_);
137 default_network_.path_ = default_network_state.service_path;
shill_property_handler.cc 552 const std::string& service_path,
558 service_path.c_str(), call_status));
561 UpdateIPConfigProperty(service_path, properties,
563 UpdateIPConfigProperty(service_path, properties,
565 UpdateIPConfigProperty(service_path, properties,
567 UpdateIPConfigProperty(service_path, properties,
569 UpdateIPConfigProperty(service_path, properties,
574 const std::string& service_path,
580 << ", for: " << service_path; local
584 service_path, NetworkState::IPConfigProperty(property), *value)
    [all...]
cros_network_functions_unittest.cc 179 const std::string service_path = "/"; local
182 CallActivateCellularModemAndBlock(dbus::ObjectPath(service_path),
185 EXPECT_TRUE(CrosActivateCellularModem(service_path, carrier));
189 const std::string service_path = "/"; local
191 CompleteCellularActivation(dbus::ObjectPath(service_path), _, _))
194 CrosCompleteCellularActivation(service_path);
198 const std::string service_path = "/"; local
208 SetProperty(dbus::ObjectPath(service_path), property,
211 CrosSetNetworkServiceProperty(service_path, property, value);
215 const std::string service_path = "/" local
464 const std::string service_path = "\/service\/path"; local
643 const std::string service_path = "\/service\/path"; local
650 const std::string service_path = "\/service\/path"; local
    [all...]
network_configuration_handler_unittest.cc 49 const std::string& service_path,
53 EXPECT_EQ(expected_id, service_path);
131 void OnSetProperties(const dbus::ObjectPath& service_path,
140 const dbus::ObjectPath& service_path,
152 const dbus::ObjectPath& service_path,
170 const dbus::ObjectPath& service_path,
186 bool PendingProfileEntryDeleterForTest(const std::string& service_path) {
188 PendingProfileEntryDeleterForTest(service_path);
202 std::string service_path = "/service/1"; local
213 SetProperty(dbus::ObjectPath(service_path), key
236 std::string service_path = "\/service\/1"; local
258 std::string service_path = "\/service\/1"; local
295 std::string service_path = "\/service\/1"; local
356 std::string service_path = "\/service\/1"; local
    [all...]
network_connection_handler.cc 30 void InvokeErrorCallback(const std::string& service_path,
34 NET_LOG_ERROR(error_msg, service_path);
38 network_handler::CreateErrorData(service_path, error_name, error_msg));
64 bool VPNIsConfigured(const std::string& service_path,
72 NET_LOG_EVENT("OpenVPN: No hostname", service_path);
79 NET_LOG_EVENT("OpenVPN: No username", service_path);
86 NET_LOG_EVENT("OpenVPN: Passphrase Required", service_path);
89 NET_LOG_EVENT("OpenVPN Is Configured", service_path);
96 NET_LOG_EVENT("VPN: Passphrase Required", service_path);
99 NET_LOG_EVENT("VPN Is Configured", service_path);
140 std::string service_path; member in struct:chromeos::NetworkConnectionHandler::ConnectRequest
    [all...]
cros_network_functions.cc 61 const std::string& service_path) : service_path_(service_path),
64 AddPropertyChangedObserver(dbus::ObjectPath(service_path), this);
183 const dbus::ObjectPath& service_path) {
184 VLOG(1) << "OnGetServiceService: " << service_path.value();
186 service_path, base::Bind(&RunCallbackWithDictionaryValue,
188 service_path.value()));
314 bool CrosActivateCellularModem(const std::string& service_path,
317 CallActivateCellularModemAndBlock(dbus::ObjectPath(service_path),
321 void CrosCompleteCellularActivation(const std::string& service_path) {
371 service_path, local
    [all...]
  /external/chromium_org/cloud_print/service/win/
service_controller.cc 126 base::FilePath service_path; local
127 CHECK(PathService::Get(base::FILE_EXE, &service_path));
128 return service_path.DirName().Append(base::FilePath(kServiceExeName));
164 base::FilePath service_path = GetBinary();
165 if (!base::PathExists(service_path))
167 CommandLine command_line(service_path);
248 base::FilePath service_path = GetBinary();
249 if (!base::PathExists(service_path))
252 command_line_.SetProgram(service_path);
cloud_print_service.cc 36 base::FilePath service_path; local
37 CHECK(PathService::Get(base::FILE_EXE, &service_path));
40 std::cout << " " << service_path.BaseName().value();
  /external/chromium/chrome/browser/automation/
testing_automation_provider_chromeos.cc 265 network_library->ethernet_network()->service_path());
268 network_library->wifi_network()->service_path());
272 network_library->cellular_network()->service_path());
283 items->Set(ethernet_network->service_path(), item);
302 items->Set(wifi->service_path(), item);
329 items->Set(cellular_networks[i]->service_path(), item);
392 std::string service_path, password, identity, certpath; local
393 if (!args->GetString("service_path", &service_path) ||
403 network_library->FindWifiNetworkByPath(service_path);
    [all...]
  /external/chromium_org/ash/system/tray/
system_tray_delegate.h 39 std::string service_path; member in struct:ash::NetworkIconInfo
165 // Shows the settings related to network. If |service_path| is not empty,
167 virtual void ShowNetworkSettings(const std::string& service_path) = 0;
  /external/chromium_org/chrome/browser/chromeos/options/
network_config_view.cc 89 std::string service_path = network->path(); local
91 child_config_view_ = new WifiConfigView(this, service_path, false);
93 child_config_view_ = new WimaxConfigView(this, service_path);
95 child_config_view_ = new VPNConfigView(this, service_path);
103 "" /* service_path */,
110 "" /* service_path */);
122 void NetworkConfigView::Show(const std::string& service_path,
128 GetNetworkState(service_path);
130 LOG(ERROR) << "NetworkConfigView::Show called with invalid service_path";
219 "" /* service_path */,
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_api_chromeos.cc 82 const std::string& service_path,
86 service_path);
132 const std::string& service_path,
136 service_path);
160 std::string service_path = params->network_guid; local
163 GetNetworkState(service_path);
238 const std::string& service_path = (*it)->path(); local
253 service_path);
  /external/chromium/chrome/browser/chromeos/status/
network_menu.h 118 const std::string& service_path, int flags)
122 service_path(service_path),
136 std::string service_path; member in struct:chromeos::NetworkMenuModel::MenuItem
network_menu.cc 106 const std::string& service_path = menu_items_[index].service_path; local
108 WifiNetwork* wifi = cros->FindWifiNetworkByPath(service_path);
132 << service_path;
137 service_path);
156 << service_path;
166 VirtualNetwork* vpn = cros->FindVirtualNetworkByPath(service_path);
187 LOG(WARNING) << "VPN does not exist to connect to: " << service_path;
409 && wifi_networks[i]->service_path() == active_wifi->service_path())
    [all...]
  /external/chromium_org/ash/system/chromeos/network/
network_state_list_detailed_view.cc 124 : service_path(path),
129 std::string service_path; member in struct:ash::internal::tray::NetworkInfo
304 const std::string& service_path = found->second; local
307 RemoveConfiguration(service_path,
314 GetNetworkState(service_path);
317 service_path);
319 ash::network_connect::ConnectToNetwork(service_path, NULL);
501 handler->GetNetworkState(info->service_path);
518 handler->GetFavoriteState(info->service_path);
587 service_path_map_.find(info->service_path);
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 412 std::string service_path; local
417 !args->GetString(0, &service_path) ||
428 cros->FindCellularNetworkByPath(service_path);
494 cros->AddNetworkObserver(wifi_network->service_path(), this);
502 cros->AddNetworkObserver(cell_network->service_path(), this);
514 cros->GetDataPlans(cellular->service_path());
523 connection_plans.SetString("servicePath", cellular->service_path());
575 std::string service_path; local
579 !args->GetString(0, &service_path) ||
592 chromeos::WifiNetwork* network = cros->FindWifiNetworkByPath(service_path);
758 std::string service_path; local
774 std::string service_path; local
842 std::string service_path; local
965 std::string service_path; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
mobile_setup_ui.cc 108 const std::string& service_path) {
110 GetNetworkLibrary()->FindCellularNetworkByPath(service_path);
136 explicit MobileSetupUIHTMLSource(const std::string& service_path);
161 explicit MobileSetupHandler(const std::string& service_path);
395 const std::string& service_path)
397 service_path_(service_path) {
443 MobileSetupHandler::MobileSetupHandler(const std::string& service_path)
446 service_path_(service_path),
504 EvaluateCellularNetwork(GetCellularNetwork(network->service_path()));
554 lib->AddNetworkObserver(network->service_path(), this)
1324 std::string service_path = network ? network->service_path() : std::string(); local
    [all...]
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider_chromeos.cc 508 network_library->ethernet_network()->service_path());
511 network_library->wifi_network()->service_path());
515 network_library->cellular_network()->service_path());
528 items->Set(ethernet_network->service_path(), item);
547 items->Set(wifi->service_path(), item);
575 items->Set(cellular_networks[i]->service_path(), item);
590 remembered_wifi_items->Set(wifi->service_path(), item);
683 std::string service_path; local
684 if (!args->GetString("service_path", &service_path)) {
726 std::string service_path, password; local
759 std::string service_path; local
954 std::string service_path; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_cros.cc 72 const std::string& service_path) {
73 if (monitored_networks_.find(service_path) == monitored_networks_.end()) {
77 service_path);
78 monitored_networks_[service_path] = watcher;
83 const std::string& service_path) {
84 NetworkWatcherMap::iterator iter = monitored_networks_.find(service_path);
198 const std::string& service_path,
206 << service_path
214 Network* network = FindNetworkByPath(service_path);
216 LOG(ERROR) << "No network for path: " << service_path;
484 const std::string& service_path = network->service_path(); local
755 std::string service_path; local
821 std::string service_path; local
979 std::string service_path; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/status/
network_menu.cc 79 const std::string& service_path, int flags)
83 service_path(service_path),
99 std::string service_path; member in struct:chromeos::NetworkMenuModel::MenuItem
221 const std::string& service_path = menu_items_[index].service_path; local
223 ash::network_connect::ConnectToNetwork(service_path, native_window);
224 owner_->delegate()->OnConnectToNetworkRequested(service_path);

Completed in 1037 milliseconds

1 2