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

1 2 3 4 5 6 7 8 910

  /external/libchrome/dbus/
util.cc 9 std::string GetAbsoluteMemberName(const std::string& interface_name,
11 return interface_name + "." + member_name;
mock_exported_object.h 23 bool(const std::string& interface_name,
27 void(const std::string& interface_name,
object_manager.h 84 // const std::string& interface_name)
87 // object_proxy, interface_name,
149 // |object_proxy|. The D-Bus interface name |interface_name| is that passed
158 const std::string& interface_name) = 0;
162 // name |interface_name| is that passed to RegisterInterface() by the
167 // |interface_name| as appropriate. An implementation class will only
170 const std::string& /* interface_name */) { }
174 // name |interface_name| is that passed to RegisterInterface() by the
182 const std::string& /* interface_name */) { }
191 // interface named in |interface_name|. That object's CreateProperties(
    [all...]
  /system/connectivity/apmanager/
shill_proxy_interface.h 28 // Claim the given interface |interface_name| from shill.
29 virtual bool ClaimInterface(const std::string& interface_name) = 0;
30 // Release the given interface |interface_name| to shill.
31 virtual bool ReleaseInterface(const std::string& interface_name) = 0;
34 virtual bool SetupApModeInterface(std::string* interface_name) = 0;
36 virtual bool SetupStationModeInterface(std::string* interface_name) = 0;
shill_stub_proxy.cc 27 bool ShillStubProxy::ClaimInterface(const string& interface_name) {
31 bool ShillStubProxy::ReleaseInterface(const string& interface_name) {
shill_manager.cc 42 void ShillManager::ClaimInterface(const string& interface_name) {
44 shill_proxy_->ClaimInterface(interface_name);
45 claimed_interfaces_.insert(interface_name);
48 void ShillManager::ReleaseInterface(const string& interface_name) {
50 shill_proxy_->ReleaseInterface(interface_name);
51 claimed_interfaces_.erase(interface_name);
55 bool ShillManager::SetupApModeInterface(string* interface_name) {
57 return shill_proxy_->SetupApModeInterface(interface_name);
60 bool ShillManager::SetupStationModeInterface(string* interface_name) {
62 return shill_proxy_->SetupStationModeInterface(interface_name);
    [all...]
shill_manager.h 39 // Claim the given interface |interface_name| from shill.
40 virtual void ClaimInterface(const std::string& interface_name);
41 // Release the given interface |interface_name| to shill.
42 virtual void ReleaseInterface(const std::string& interface_name);
45 virtual bool SetupApModeInterface(std::string* interface_name);
47 virtual bool SetupStationModeInterface(std::string* interface_name);
dhcp_server_factory.cc 36 uint16_t server_addr_index, const std::string& interface_name) {
37 return new DHCPServer(server_addr_index, interface_name);
shill_stub_proxy.h 34 bool ClaimInterface(const std::string& interface_name) override;
35 bool ReleaseInterface(const std::string& interface_name) override;
mock_manager.h 39 scoped_refptr<Device>(const std::string& interface_name));
40 MOCK_METHOD1(ClaimInterface, void(const std::string& interface_name));
41 MOCK_METHOD1(ReleaseInterface, void(const std::string& interface_name));
45 MOCK_METHOD1(SetupApModeInterface, bool(std::string* interface_name));
46 MOCK_METHOD1(SetupStationModeInterface, bool(std::string* interface_name));
manager.cc 85 const string& interface_name) {
87 if (device->InterfaceExists(interface_name)) {
101 void Manager::ClaimInterface(const string& interface_name) {
102 shill_manager_.ClaimInterface(interface_name);
105 void Manager::ReleaseInterface(const string& interface_name) {
106 shill_manager_.ReleaseInterface(interface_name);
110 bool Manager::SetupApModeInterface(string* interface_name) {
111 return shill_manager_.SetupApModeInterface(interface_name);
114 bool Manager::SetupStationModeInterface(string* interface_name) {
115 return shill_manager_.SetupStationModeInterface(interface_name);
    [all...]
fake_device_adaptor.cc 34 const std::string& interface_name) {
35 preferred_ap_interface_ = interface_name;
manager.h 62 // |interface_name|.
64 const std::string& interface_name);
66 // Claim the given interface |interface_name| from shill.
67 virtual void ClaimInterface(const std::string& interface_name);
68 // Release the given interface |interface_name| to shill.
69 virtual void ReleaseInterface(const std::string& interface_name);
71 // Setup an AP mode interface. Returns true and sets |interface_name|
73 virtual bool SetupApModeInterface(std::string* interface_name);
74 // Setup a station mode interface. Returns true and sets |interface_name|
76 virtual bool SetupStationModeInterface(std::string* interface_name);
    [all...]
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 41 @param[in] interface_name Name of the interface.
48 const wchar_t* interface_name) {
50 if (NULL == interface_name) {
56 return new AdbWinUsbInterfaceObject(interface_name);
  /external/autotest/client/cros/tendo/n_faced_peerd/
dbus_property_exposer.py 17 def __init__(self, bus, path, interface_name):
19 self.interface_name = interface_name
40 self.PropertiesChanged(dbus.String(self.interface_name),
59 def Get(self, interface_name, requested_property_name):
62 @param interface_name: string interface to get properties of.
67 if interface_name != self.interface_name:
78 def GetAll(self, interface_name):
81 @param interface_name: string interface to get properties of
    [all...]
object_manager.py 45 def claim_interface(self, path, interface_name, property_getter):
49 @param interface_name: string DBus interface name of exposed object.
55 logging.debug('claim_interface(%s, %s, ...)', path, interface_name)
57 self._paths[path][interface_name] = property_getter
59 self._paths[path] = {interface_name: property_getter}
61 {dbus.String(interface_name): property_getter()}, 'sa{sv}')
65 def release_interface(self, path, interface_name):
72 @param interface_name: string DBus interface name previously claimed.
75 logging.debug('release_interface(%s, %s)', path, interface_name)
76 if path not in self._paths or interface_name not in self._paths[path]
    [all...]
  /external/libbrillo/brillo/dbus/
exported_property_set.cc 33 const std::string& interface_name) {
36 interface_name);
40 const std::string& interface_name,
44 auto& prop_map = properties_[interface_name];
52 interface_name,
58 const std::string& interface_name) {
60 return GetInterfaceProperties(interface_name);
64 const std::string& interface_name) const {
66 auto property_map_itr = properties_.find(interface_name);
75 const std::string& interface_name,
92 LOG(INFO) << "Looking for " << property_name << " on " << interface_name; local
116 LOG(INFO) << "Looking for " << property_name << " on " << interface_name; local
    [all...]
dbus_signal.cc 13 const std::string& interface_name,
15 : interface_name_(interface_name),
exported_object_manager.cc 42 const std::string& interface_name,
52 {interface_name, property_dict}
55 registered_objects_[path][interface_name] = property_writer;
60 const std::string& interface_name) {
67 auto property_for_interface_itr = interfaces_for_path.find(interface_name);
69 << "Attempted to remove interface " << interface_name << " from "
71 interfaces_for_path.erase(interface_name);
79 std::vector<std::string>{interface_name});
mock_exported_object_manager.h 31 const std::string& interface_name,
35 const std::string& interface_name));
  /system/connectivity/apmanager/dbus/
shill_dbus_proxy.h 39 bool ClaimInterface(const std::string& interface_name) override;
40 bool ReleaseInterface(const std::string& interface_name) override;
42 bool SetupApModeInterface(std::string* interface_name) override;
43 bool SetupStationModeInterface(std::string* interface_name) override;
  /system/connectivity/shill/dbus/
chromeos_dbus_properties_proxy.cc 54 const string& interface_name) {
55 SLOG(&proxy_->GetObjectPath(), 2) << __func__ << "(" << interface_name << ")"; local
58 if (!proxy_->GetAll(interface_name, &properties_dict, &error)) {
59 LOG(ERROR) << __func__ << " failed on " << interface_name
69 brillo::Any ChromeosDBusPropertiesProxy::Get(const string& interface_name,
71 SLOG(&proxy_->GetObjectPath(), 2) << __func__ << "(" << interface_name
75 if (!proxy_->Get(interface_name, property, &value, &error)) {
76 LOG(ERROR) << __func__ << " failed for " << interface_name
105 const string& interface_name, const string& signal_name, bool success) {
107 << "interface: " << interface_name
111 << " to interface " << interface_name; local
    [all...]
  /system/connectivity/shill/
mock_dbus_properties_proxy.h 34 MOCK_METHOD1(GetAll, KeyValueStore(const std::string& interface_name));
35 MOCK_METHOD2(Get, brillo::Any(const std::string& interface_name,
  /external/autotest/client/cros/cellular/pseudomodem/
dbus_std_ifaces.py 124 def SetUInt32(self, interface_name, property_name, value):
129 @param interface_name: The DBus interface name.
132 @raises: MMPropertyError, if the given |interface_name| or
138 self.Set(interface_name, property_name, dbus.types.UInt32(value))
141 def SetInt32(self, interface_name, property_name, value):
146 @param interface_name: The DBus interface name.
149 @raises: MMPropertyError, if the given |interface_name| or
155 self.Set(interface_name, property_name, dbus.types.Int32(value))
161 def Get(self, interface_name, property_name):
165 @param interface_name: The DBus interface name
    [all...]
  /system/connectivity/shill/test-rpc-proxy/
proxy_dbus_shill_wifi_client.h 61 bool ConfigureBgScan(const std::string& interface_name,
85 bool GetPropertyOnDevice(const std::string& interface_name,
88 bool SetPropertyOnDevice(const std::string& interface_name,
91 bool RequestRoam(const std::string& interface_name, const std::string& bssid) override;
92 bool SetDeviceEnabled(const std::string& interface_name, bool enable) override;
93 bool DiscoverTdlsLink(const std::string& interface_name,
95 bool EstablishTdlsLink(const std::string& interface_name,
97 bool QueryTdlsLink(const std::string& interface_name,
100 bool AddWakePacketSource(const std::string& interface_name,
102 bool RemoveWakePacketSource(const std::string& interface_name,
    [all...]

Completed in 216 milliseconds

1 2 3 4 5 6 7 8 910