OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShillProxy
(Results
1 - 25
of
33
) sorted by null
1
2
/system/update_engine/
shill_proxy.cc
28
ShillProxy
::
ShillProxy
()
32
ManagerProxyInterface*
ShillProxy
::GetManagerProxy() {
36
std::unique_ptr<ServiceProxyInterface>
ShillProxy
::GetServiceForPath(
shill_proxy.h
33
class
ShillProxy
: public ShillProxyInterface {
35
ShillProxy
();
36
~
ShillProxy
() override = default;
49
DISALLOW_COPY_AND_ASSIGN(
ShillProxy
);
/external/autotest/client/cros/scripts/
device
33
shill_proxy.
ShillProxy
.set_dbus_property(device, property_key, value)
44
shill = shill_proxy.
ShillProxy
()
51
shill_proxy.
ShillProxy
.get_dbus_property(device, property_key)},
58
shill = shill_proxy.
ShillProxy
()
77
shill = shill_proxy.
ShillProxy
()
profile
41
shill = shill_proxy.
ShillProxy
()
67
shill = shill_proxy.
ShillProxy
()
86
shill = shill_proxy.
ShillProxy
()
104
shill = shill_proxy.
ShillProxy
()
121
shill = shill_proxy.
ShillProxy
()
destination
35
shill = shill_proxy.
ShillProxy
()
/external/autotest/client/cros/networking/
shill_context.py
29
allowed = [shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR]
42
shill = shill_proxy.
ShillProxy
.get_proxy()
48
shill_proxy.
ShillProxy
.MANAGER_PROPERTY_ENABLED_TECHNOLOGIES)
55
shill_proxy.
ShillProxy
.MANAGER_PROPERTY_PROHIBITED_TECHNOLOGIES)
75
shill_proxy.
ShillProxy
.MANAGER_PROPERTY_PROHIBITED_TECHNOLOGIES,
82
shill = shill_proxy.
ShillProxy
.get_proxy()
87
shill_proxy.
ShillProxy
.MANAGER_PROPERTY_PROHIBITED_TECHNOLOGIES,
134
self._initial_autoconnect = shill_proxy.
ShillProxy
.dbus2primitive(
136
shill_proxy.
ShillProxy
.SERVICE_PROPERTY_AUTOCONNECT])
140
shill_proxy.
ShillProxy
.SERVICE_PROPERTY_AUTOCONNECT
[
all
...]
shill_proxy.py
15
"""Exceptions raised by
ShillProxy
and its children."""
20
"""Timeout exception raised by
ShillProxy
and its children."""
26
class
ShillProxy
(object):
267
if key not in
ShillProxy
.SERVICE_PROPERTY_MAP:
269
dbus_dict[key] =
ShillProxy
.SERVICE_PROPERTY_MAP[key](
295
return
ShillProxy
.dbus2primitive(properties[property_key])
316
ShillProxy
.str2dbus(dbus_class, value))
332
if property_key not in
ShillProxy
.MANAGER_OPTIONAL_PROPERTY_MAP:
336
dbus_class =
ShillProxy
.MANAGER_OPTIONAL_PROPERTY_MAP[property_key]
338
ShillProxy
.str2dbus(dbus_class, value)
[
all
...]
/external/autotest/client/site_tests/network_RestartShill/
network_RestartShill.py
24
shill = shill_proxy.
ShillProxy
.get_proxy()
/external/autotest/client/site_tests/cellular_StressEnable/
cellular_StressEnable.py
23
shill_proxy.
ShillProxy
.ERROR_IN_PROGRESS
28
timeout = shill_proxy.
ShillProxy
.DEVICE_ENABLE_DISABLE_TIMEOUT
/external/autotest/client/site_tests/network_DefaultProfileServices/
network_DefaultProfileServices.py
31
shill = shill_proxy.
ShillProxy
.get_proxy()
48
shill = shill_proxy.
ShillProxy
.get_proxy()
/external/autotest/client/cros/cellular/
test_environment.py
88
[shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR]))
151
timeout=shill_proxy.
ShillProxy
.DEVICE_ENUMERATION_TIMEOUT)
160
shill_proxy.
ShillProxy
.ERROR_IN_PROGRESS):
167
timeout=shill_proxy.
ShillProxy
.DEVICE_ENABLE_DISABLE_TIMEOUT)
173
shill_proxy.
ShillProxy
.
180
shill_proxy.
ShillProxy
.ERROR_NOT_SUPPORTED or
182
shill_proxy.
ShillProxy
.ERROR_FAILURE and
/external/autotest/client/site_tests/cellular_Smoke/
cellular_Smoke.py
54
service, shill_proxy.
ShillProxy
.SERVICE_PROPERTY_STATE)
67
device, shill_proxy.
ShillProxy
.DEVICE_PROPERTY_INTERFACE)
/external/autotest/client/site_tests/network_DhcpVendorEncapsulatedOptions/
network_DhcpVendorEncapsulatedOptions.py
27
proxy = shill_proxy.
ShillProxy
()
46
device_path = shill_proxy.
ShillProxy
.dbus2primitive(device.object_path)
/external/autotest/client/site_tests/network_WlanDriver/
network_WlanDriver.py
114
proxy = shill_proxy.
ShillProxy
()
117
shill_proxy.
ShillProxy
.MANAGER_PROPERTY_UNINITIALIZED_TECHNOLOGIES)
/external/autotest/client/site_tests/network_8021xEapDetection/
network_8021xEapDetection.py
45
self._shill_proxy = shill_proxy.
ShillProxy
()
/external/autotest/client/site_tests/network_DefaultProfileCreation/
network_DefaultProfileCreation.py
53
shill = shill_proxy.
ShillProxy
.get_proxy()
/external/autotest/client/site_tests/cellular_ModemControl/
cellular_ModemControl.py
40
shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR)
44
shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR)
176
device, shill_proxy.
ShillProxy
.DEVICE_PROPERTY_POWERED)
187
service, shill_proxy.
ShillProxy
.SERVICE_PROPERTY_STATE)
379
shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR)
401
shill_proxy.
ShillProxy
.TECHNOLOGY_CELLULAR)
/external/autotest/client/site_tests/network_8021xWiredAuthentication/
network_8021xWiredAuthentication.py
60
return shill_proxy.
ShillProxy
.dbus2primitive(
98
self._shill_proxy = shill_proxy.
ShillProxy
()
/external/autotest/client/site_tests/cellular_ConnectFailure/
cellular_ConnectFailure.py
84
shill_proxy.
ShillProxy
.SERVICE_PROPERTY_STATE,
/external/autotest/client/site_tests/network_DhcpWpadNegotiation/
network_DhcpWpadNegotiation.py
27
proxy = shill_proxy.
ShillProxy
()
/system/update_engine/update_manager/
state_factory.cc
67
new RealShillProvider(new chromeos_update_engine::
ShillProxy
(), clock));
/external/autotest/client/cros/
dhcpv6_test_base.py
61
device_path = shill_proxy.
ShillProxy
.dbus2primitive(device.object_path)
118
return shill_proxy.
ShillProxy
.dbus2primitive(dhcp_properties)
125
self._shill_proxy = shill_proxy.
ShillProxy
()
dhcp_test_base.py
97
device_path = shill_proxy.
ShillProxy
.dbus2primitive(device.object_path)
154
return shill_proxy.
ShillProxy
.dbus2primitive(dhcp_properties)
162
self._shill_proxy = shill_proxy.
ShillProxy
()
/external/autotest/client/site_tests/network_DhcpBrokenDefaultGateway/
network_DhcpBrokenDefaultGateway.py
29
proxy = shill_proxy.
ShillProxy
()
/external/autotest/client/site_tests/network_DhcpMTU/
network_DhcpMTU.py
29
proxy = shill_proxy.
ShillProxy
()
Completed in 389 milliseconds
1
2