OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_sim
(Results
1 - 7
of
7
) sorted by null
/external/autotest/client/deps/lansim/src/py/
simulator_unittest.py
90
self.
_sim
= simulator.Simulator(self._tap)
102
self.
_sim
.run(timeout=0.1)
109
self.
_sim
.add_timeout(60, raise_exception)
110
self.
_sim
.run(timeout=0.1)
111
self.assertTrue(self.
_sim
.remove_timeout(raise_exception))
112
self.assertFalse(self.
_sim
.remove_timeout(raise_exception))
121
self.
_sim
.add_timeout(0.2, lambda: tasks_done.append('good task'))
122
self.
_sim
.add_timeout(4.0, lambda: tasks_done.append('bad task'))
123
self.
_sim
.run(timeout=5.0, until=lambda: tasks_done)
133
host.SimpleHost(self.
_sim
, '12:34:56:78:90:AB', '169.254.11.22'
[
all
...]
host.py
36
self.
_sim
= sim
69
return self.
_sim
92
self.
_sim
.write(eth_resp)
154
return self.
_sim
.write(hw_pkt)
170
self.
_sim
.add_match({
270
self.
_sim
= host.simulator
301
self.
_sim
.add_match({
/external/autotest/client/site_tests/p2p_ConsumeFiles/
p2p_ConsumeFiles.py
103
self.
_sim
.stop()
104
self.
_sim
.join()
105
if self.
_sim
.error:
106
logging.error('SimulatorThread exception: %r', self.
_sim
.error)
107
logging.error(self.
_sim
.traceback)
116
self.
_sim
= simulator.SimulatorThread(self._tap)
121
peer_a = host.SimpleHost(self.
_sim
, '94:EB:2C:00:00:61',
123
peer_b = host.SimpleHost(self.
_sim
, '94:EB:2C:00:00:62',
125
peer_c = host.SimpleHost(self.
_sim
, '94:EB:2C:00:00:63',
156
self.
_sim
.start(
[
all
...]
/external/autotest/client/site_tests/p2p_ServeFiles/
p2p_ServeFiles.py
39
self.
_sim
= None
51
if not self.
_sim
:
53
self.
_sim
.stop()
54
self.
_sim
.join()
55
if self.
_sim
.error:
56
logging.error('SimulatorThread exception: %r', self.
_sim
.error)
57
logging.error(self.
_sim
.traceback)
111
self.
_sim
= simulator.SimulatorThread(self._p2p.tap)
113
peer = host.SimpleHost(self.
_sim
, '94:EB:2C:00:00:61', '169.254.10.55')
120
self.
_sim
.start(
[
all
...]
/external/autotest/client/site_tests/p2p_ShareFiles/
p2p_ShareFiles.py
46
self.
_sim
.run(timeout=timeout, until=until)
62
self.
_sim
= simulator.Simulator(self._p2p.tap)
64
peer = host.SimpleHost(self.
_sim
, '94:EB:2C:00:00:61', '169.254.10.97')
/external/autotest/client/cros/networking/
mm1_proxy.py
288
self.
_sim
= self._bus.get_object(mm1_constants.I_MODEM_MANAGER, path)
294
return self.
_sim
300
return dbus.Interface(self.
_sim
, dbus.PROPERTIES_IFACE)
306
return dbus.Interface(self.
_sim
, mm1_constants.I_SIM)
/external/autotest/client/cros/cellular/pseudomodem/
pseudomodem.py
63
self.
_sim
= None
130
if use_3gpp and not self.
_sim
:
131
self.
_sim
= sim.SIM(sim.SIM.Carrier('test'),
169
# their BUS set. |self.
_sim
| exists if the user provided one, or if the
171
if self.
_sim
:
172
self._modem.SetSIM(self.
_sim
)
197
self.
_sim
= self._CreateCustomObject(test_module,
Completed in 373 milliseconds