Home
last modified time | relevance | path

Searched refs:args (Results 1 – 16 of 16) sorted by relevance

/edtt-3.6.0-3.5.0-3.4.0/src/components/
Daddata.py320 def encode(self, adType, *args): argument
325 self.data = [ 2, adType, args[0] if args[0] >= 0 else 256+args[0] ];
332 self.data = [ 2, adType, args[0] ];
339 self.data = [ 1+2*len(args), adType ];
340 for arg in args:
348 self.data = [ 1+4*len(args), adType ];
349 for arg in args:
357 self.data = [ 1+16*len(args), adType ];
358 for arg in args:
365 name = args[0].encode('UTF-8');
[all …]
Dattdata.py103 def encode(self, opcode, *args): argument
109 self.data = [ opcode ] + toArray( args[0], 2 );
115 self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 2 );
121 … self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 2 ) + toArray( args[2], 2 );
122 for arg in args[3:]:
129 …self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 2 ) + toArray( args[2], 2 if ar…
135 self.data = [ opcode ] + toArray( args[0], 2 );
141 self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 2 );
148 for arg in args[0]:
155 …self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 2 ) + toArray( args[2], 2 if ar…
[all …]
Dsmpdata.py98 def encode(self, opcode, *args): argument
104 self.data = [ opcode ] + list( args[:6] );
110 self.data = [ opcode ] + list( args[:6] );
116 self.data = [ opcode ] + toArray( args[0], 16 );
122 self.data = [ opcode ] + toArray( args[0], 16 );
128 self.data = [ opcode ] + [ args[0] ];
134 self.data = [ opcode ] + toArray( args[0], 16 );
140 self.data = [ opcode ] + toArray( args[0], 2 ) + toArray( args[1], 8 );
146 self.data = [ opcode ] + toArray( args[0], 16 );
152 self.data = [ opcode ] + [ args[0] ] + toArray( args[1], 6 );
[all …]
Dedttt_bsim.py52 (args, discard) = parser.parse_known_args(pending_args)
54 self.sim_id = args.sim_id;
55 self.EDTT_tool_dev_nbr = args.EDTT_tool_dev_nbr;
56 self.n_devices = args.number_of_devices;
57 self.devices_numbers = args.devices_numbers;
58 self.RxWait = int(args.RxWait)
60 if args.low_level_device:
61 if not args.low_level_device_nbr:
63 … self.low_level_device = BSimDevice(int(args.low_level_device_nbr), self.sim_id, TraceClass)
65 if len(args.devices_numbers) < args.number_of_devices:
[all …]
Dbsim_device.py48 command, args = self.command_queue.get()
52 self.__device_wait(args[0])
54 self.__device_tx(args[0], args[1], args[2], args[3], args[4])
/edtt-3.6.0-3.5.0-3.4.0/src/
Dedttool.py79 def run_one_test(args, xtra_args, transport, trace, test_mod, test_spec, nameLen, packets): argument
87 result = test_mod.run_a_test(args, transport, trace, test_spec, packets);
94 def run_tests(args, xtra_args, transport, trace, dumps): argument
99 test_mod = try_to_import(args.test, "test", "tests.");
103 t = args.case
107 if t.lower() == "randomize" or args.shuffle:
111 …result = run_one_test(args, xtra_args, transport, trace, test_mod, test_spec, nameLen, Packets(dum…
114 if result != 0 and args.stop_on_failure:
118 …result = run_one_test(args, xtra_args, transport, trace, test_mod, test_specs[t], nameLen, Packets…
126 if args.shuffle:
[all …]
/edtt-3.6.0-3.5.0-3.4.0/docs/
DEDTT_transport.md20 * __init__(args, trace_module): where:
21 * `<args>` are any command line arguments the EDTT has not been able
DEDTT_framework_Babblesim.md206 def main(args, transport, trace):
/edtt-3.6.0-3.5.0-3.4.0/src/tests/
Decho_test.py37 def run_a_test(args, transport, trace, test_spec): argument
Dle_transceiver_test.py52 def run_a_test(args, transport, trace, test_spec): argument
Dll_multiple_connections.py113 def run_a_test(args, transport, trace, test_spec): argument
Dhci_verification.py1128 def run_a_test(args, transport, trace, test_spec, device_dumps): argument
Dial_verification.py2357 def run_a_test(args, transport, trace, test_spec, device_dumps): argument
Dgap_verification.py1923 def run_a_test(args, transport, trace, test_spec, device_dumps): argument
Dgatt_verification.py3208 def run_a_test(args, transport, trace, test_spec, device_dumps): argument
Dll_verification.py9547 def run_a_test(args, transport, trace, test_spec, device_dumps): argument