/external/chromium_org/chromeos/dbus/ |
mock_shill_ipconfig_client.h | 22 void(const dbus::ObjectPath& ipconfig_path, 25 void(const dbus::ObjectPath& ipconfig_path, 27 MOCK_METHOD2(Refresh, void(const dbus::ObjectPath& ipconfig_path, 29 MOCK_METHOD2(GetProperties, void(const dbus::ObjectPath& ipconfig_path, 32 base::DictionaryValue*(const dbus::ObjectPath& ipconfig_path)); 33 MOCK_METHOD4(SetProperty, void(const dbus::ObjectPath& ipconfig_path, 37 MOCK_METHOD3(ClearProperty, void(const dbus::ObjectPath& ipconfig_path, 40 MOCK_METHOD2(Remove, void(const dbus::ObjectPath& ipconfig_path, 42 MOCK_METHOD1(CallRemoveAndBlock, bool(const dbus::ObjectPath& ipconfig_path));
|
shill_ipconfig_client_stub.h | 23 const dbus::ObjectPath& ipconfig_path, 26 const dbus::ObjectPath& ipconfig_path, 28 virtual void Refresh(const dbus::ObjectPath& ipconfig_path, 30 virtual void GetProperties(const dbus::ObjectPath& ipconfig_path, 33 const dbus::ObjectPath& ipconfig_path) OVERRIDE; 34 virtual void SetProperty(const dbus::ObjectPath& ipconfig_path, 38 virtual void ClearProperty(const dbus::ObjectPath& ipconfig_path, 41 virtual void Remove(const dbus::ObjectPath& ipconfig_path, 49 // Dictionary of <ipconfig_path, property dictionaries>
|
shill_ipconfig_client.cc | 32 const dbus::ObjectPath& ipconfig_path, 34 GetHelper(ipconfig_path)->AddPropertyChangedObserver(observer); 38 const dbus::ObjectPath& ipconfig_path, 40 GetHelper(ipconfig_path)->RemovePropertyChangedObserver(observer); 42 virtual void Refresh(const dbus::ObjectPath& ipconfig_path, 44 virtual void GetProperties(const dbus::ObjectPath& ipconfig_path, 47 const dbus::ObjectPath& ipconfig_path) OVERRIDE; 48 virtual void SetProperty(const dbus::ObjectPath& ipconfig_path, 52 virtual void ClearProperty(const dbus::ObjectPath& ipconfig_path, 55 virtual void Remove(const dbus::ObjectPath& ipconfig_path, [all...] |
shill_ipconfig_client_stub.cc | 28 const dbus::ObjectPath& ipconfig_path, 33 const dbus::ObjectPath& ipconfig_path, 37 void ShillIPConfigClientStub::Refresh(const dbus::ObjectPath& ipconfig_path, 42 const dbus::ObjectPath& ipconfig_path, 45 if (!ipconfigs_.GetDictionaryWithoutPathExpansion(ipconfig_path.value(), 56 const dbus::ObjectPath& ipconfig_path) { 61 const dbus::ObjectPath& ipconfig_path, 66 if (ipconfigs_.GetDictionaryWithoutPathExpansion(ipconfig_path.value(), 74 ipconfigs_.SetWithoutPathExpansion(ipconfig_path.value(), 82 const dbus::ObjectPath& ipconfig_path, [all...] |
shill_ipconfig_client.h | 48 // Adds a property changed |observer| for the ipconfig at |ipconfig_path|. 50 const dbus::ObjectPath& ipconfig_path, 53 // Removes a property changed |observer| for the ipconfig at |ipconfig_path|. 55 const dbus::ObjectPath& ipconfig_path, 60 virtual void Refresh(const dbus::ObjectPath& ipconfig_path, 65 virtual void GetProperties(const dbus::ObjectPath& ipconfig_path, 75 const dbus::ObjectPath& ipconfig_path) = 0; 79 virtual void SetProperty(const dbus::ObjectPath& ipconfig_path, 86 virtual void ClearProperty(const dbus::ObjectPath& ipconfig_path, 92 virtual void Remove(const dbus::ObjectPath& ipconfig_path, [all...] |
shill_service_client.h | 62 const std::string& ipconfig_path,
|
shill_service_client_stub.h | 96 const std::string& ipconfig_path,
|
shill_manager_client_stub.cc | 228 std::string ipconfig_path; local 229 properties.GetString(shill::kIPConfigProperty, &ipconfig_path); 238 flimflam::kStateIdle, ipconfig_path,
|
shill_service_client_stub.cc | 352 const std::string& ipconfig_path, 372 if (!ipconfig_path.empty()) 375 base::Value::CreateStringValue(ipconfig_path));
|
/external/chromium_org/chromeos/network/ |
network_device_handler.cc | 58 void IPConfigRefreshCallback(const std::string& ipconfig_path, 63 ipconfig_path); 65 NET_LOG_EVENT("IPConfigs.Refresh Succeeded", ipconfig_path); 87 std::string ipconfig_path; local 88 if (!ip_configs->GetString(i, &ipconfig_path)) 91 dbus::ObjectPath(ipconfig_path), 92 base::Bind(&IPConfigRefreshCallback, ipconfig_path));
|
cros_network_functions.cc | 241 const std::string& ipconfig_path, 248 dbus::ObjectPath(ipconfig_path))); 298 std::string ipconfig_path; local 299 if (!ips->GetString(i, &ipconfig_path)) { 303 ParseIPConfig(device_path, ipconfig_path, &ipconfig_vector); 352 void CrosSetNetworkIPConfigProperty(const std::string& ipconfig_path, 356 dbus::ObjectPath(ipconfig_path), property, value, 606 void CrosRequestIPConfigRefresh(const std::string& ipconfig_path) { 608 dbus::ObjectPath(ipconfig_path),
|
cros_network_functions.h | 91 const std::string& ipconfig_path, 237 // Refreshes the IP config |ipconfig_path| to pick up changes in 240 const std::string& ipconfig_path);
|
shill_property_handler_unittest.cc | 215 const std::string& ipconfig_path, 219 ipconfig_path,
|
cros_network_functions_unittest.cc | 237 const std::string ipconfig_path = "/"; local 242 SetProperty(dbus::ObjectPath(ipconfig_path), property, 244 CrosSetNetworkIPConfigProperty(ipconfig_path, property, value);
|
/external/chromium_org/chrome/browser/chromeos/cros/ |
network_library_impl_cros.cc | 461 std::string ipconfig_path; local 462 if (!ips->GetString(i, &ipconfig_path)) 464 CrosRequestIPConfigRefresh(ipconfig_path); [all...] |