OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ndp_entries
(Results
1 - 7
of
7
) sorted by null
/external/autotest/client/site_tests/cellular_MbimComplianceDataTransfer/
cellular_MbimComplianceDTS1622.py
39
_, _,
ndp_entries
, _ = loopback.run(ntb_format=ntb_format)
43
if
ndp_entries
[0].datagram_index < 12:
48
if
ndp_entries
[0].datagram_index < 16:
cellular_MbimComplianceDTS1723.py
39
_, _,
ndp_entries
, _ = loopback.run(ntb_format=ntb_format)
43
if
ndp_entries
[0].datagram_length < 20:
48
if
ndp_entries
[0].datagram_length < 20:
cellular_MbimComplianceDTS1824.py
40
_, _,
ndp_entries
, _ = loopback.run(ntb_format=ntb_format)
44
if
ndp_entries
[-1].datagram_index != 0:
49
if
ndp_entries
[-1].datagram_index != 0:
cellular_MbimComplianceDTS1925.py
40
_, _,
ndp_entries
, _ = loopback.run(ntb_format=ntb_format)
44
if
ndp_entries
[-1].datagram_length != 0:
49
if
ndp_entries
[-1].datagram_length != 0:
/external/autotest/client/cros/cellular/mbim_compliance/sequences/
loopback_sequence.py
49
@returns tuple of (nth, ndp,
ndp_entries
, payload) where,
52
ndp_entries
- Array of NDP entry header objects.
65
nth, ndp,
ndp_entries
, payload = data_transfer.receive_data_packets(
68
return (nth, ndp,
ndp_entries
, payload)
/external/autotest/client/cros/cellular/mbim_compliance/
mbim_data_transfer.py
95
@returns tuple of (nth, ndp,
ndp_entries
, payload) where,
98
ndp_entries
- Array of NDP entry header objects.
239
self.
ndp_entries
= []
252
self.
ndp_entries
.append(self._ndp_entry_class(
257
self.
ndp_entries
.append(self._ndp_entry_class(
290
for entry in self.
ndp_entries
:
307
@returns tuple of (nth, ndp,
ndp_entries
, payload) where,
310
ndp_entries
- Array of NDP entry header objects.
331
self.
ndp_entries
= []
344
self.
ndp_entries
.append(ndp_entry
[
all
...]
mbim_data_transfer_unittest.py
110
nth, ndp,
ndp_entries
, payload = ntb.parse_ntb(ntb_frame)
134
self.assertEqual(
ndp_entries
[0].datagram_index, 32)
135
self.assertEqual(
ndp_entries
[0].datagram_length, 80)
136
self.assertEqual(
ndp_entries
[1].datagram_index, 0)
137
self.assertEqual(
ndp_entries
[1].datagram_length, 0)
Completed in 465 milliseconds