Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 83) sorted by relevance

1234

/openthread-latest/src/core/thread/
Dlink_metrics.cpp133 MetricsValues values; in HandleReport() local
141 values.Clear(); in HandleReport()
190 values.mMetrics.mPduCount = true; in HandleReport()
191 values.mPduCountValue = reportTlv.GetMetricsValue32(); in HandleReport()
192 LogDebg(" - PDU Counter: %lu (Count/Summation)", ToUlong(values.mPduCountValue)); in HandleReport()
196 values.mMetrics.mLqi = true; in HandleReport()
197 values.mLqiValue = reportTlv.GetMetricsValue8(); in HandleReport()
198 LogDebg(" - LQI: %u (Exponential Moving Average)", values.mLqiValue); in HandleReport()
202 values.mMetrics.mLinkMargin = true; in HandleReport()
203values.mLinkMarginValue = ScaleRawValueToLinkMargin(reportTlv.GetMetricsValue8()); in HandleReport()
[all …]
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dgenerate_test_cert_macros.py19 def __call__(self, parser, namespace, values, option_string): argument
22 macro_name, filename = values
26 namespace.values.append((self.dest, macro_name, filename))
56 def generate(values=[], output=None, **kwargs): argument
91 f.write(template.render(macros=values))
Dtest_psa_constant_names.py97 values = run_c(type_word, expressions,
99 return expressions, values
119 expressions, values = collect_values(inputs, type_word,
123 type_word] + values)
127 for expr, value, output in zip(expressions, values, outputs):
Dpsa_collect_statuses.py53 values = [str(value) for value in self.codes]
54 cmd = [psa_constant_names, 'status'] + values
56 for value, name in zip(values, output.rstrip().split('\n')):
/openthread-latest/tests/scripts/thread-cert/
Dtest_route_table.py77 router_ids = set(_node.get_router_id() for _node in self.nodes.values())
78 for _node in self.nodes.values():
81 for _node in self.nodes.values():
Dtest_inform_previous_parent_on_reattach.py110 …alse(any(info['extaddr'] == med_extaddr for info in self.nodes[LEADER].get_child_table().values()))
138 … any(info['extaddr'] == child_extaddr for info in self.nodes[parentid].get_child_table().values()))
Dtest_service.py85 for n in list(self.nodes.values()):
89 for n in list(self.nodes.values()):
Dthread_cert.py132 for node in list(self.nodes.values()):
296 for node in list(self.nodes.values()):
539 for param in self.TOPOLOGY.values():
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dc_wrapper_generator.py442 formats, values = '%s', ['"' + function.name + '"']
447 values += vals
453 values += vals
464 values=', '.join(values)))
Dpsa_storage.py47 values = c_build_helper.get_c_expression_values(
54 for e, v in zip(expressions, values):
Dbignum_common.py65 def combination_pairs(values: List[T]) -> List[Tuple[T, T]]:
67 return [(x, y) for x in values for y in values]
Dmacro_collector.py169 arguments = [values[0] for values in argument_lists]
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_bignum.misc.data187 Base test mbedtls_mpi_cmp_int (Negative values) #1
190 Base test mbedtls_mpi_cmp_int (Negative values) #2
193 Base test mbedtls_mpi_cmp_int (Negative values) #3
205 Base test mbedtls_mpi_cmp_mpi (Negative values) #1
208 Base test mbedtls_mpi_cmp_mpi (Negative values) #2
211 Base test mbedtls_mpi_cmp_mpi (Negative values) #3
214 Base test mbedtls_mpi_cmp_mpi (Mixed values) #4
217 Base test mbedtls_mpi_cmp_mpi (Mixed values) #5
220 Base test mbedtls_mpi_cmp_mpi (Mixed values) #6
316 Base test mbedtls_mpi_lt_mpi_ct (Negative values) #1
[all …]
Dtest_suite_rsa.data745 RSA parse private key - correct format+values, minimal modulus size (128 bit)
763 RSA parse private key - correct values, extra integer inside the SEQUENCE
766 RSA parse private key - correct values, extra integer outside the SEQUENCE
769 RSA parse private key - correct values, n wrong tag
772 RSA parse private key - correct values, e wrong tag
775 RSA parse private key - correct values, d wrong tag
778 RSA parse private key - correct values, p wrong tag
781 RSA parse private key - correct values, q wrong tag
784 RSA parse private key - correct values, dp wrong tag
787 RSA parse private key - correct values, dq wrong tag
[all …]
Dtest_suite_platform_util.function13 /* Write sentinel values */
Dtest_suite_ccm.function585 // use hardcoded values for msg length and tag length. They are not a part of this test
608 // use hardcoded values for msg length and tag length. They are not a part of this test
660 // use hardcoded values for msg length and tag length. They are not a part of this test
688 // use hardcoded values for msg length and tag length. They are not a part of this test
718 // use hardcoded values for msg length and tag length. They are not a part of this test
878 // use hardcoded values for add length, msg length and tag length.
Dtest_suite_dhm.function178 /* Re-do calc_secret on server a few times to test update of blinding values */
193 * Second key exchange to test change of blinding values on server
/openthread-latest/etc/cmake/
Doptions.cmake134 macro(ot_multi_option name values ot_config ot_value_prefix description)
136 # values from `values` list mapping to OPENTHREAD_CONFIG
149 set_property(CACHE ${name} PROPERTY STRINGS "${${values}}")
155 list(FIND ${values} "${${name}}" ot_index)
157 … message(FATAL_ERROR "${name}=\"${${name}}\" - unknown value, valid values " "${${values}}")
285 message(FATAL_ERROR "Invalid value for OT_PLATFORM - valid values are:" "${OT_PLATFORM_VALUES}")
295 …message(FATAL_ERROR "Invalid value for OT_THREAD_VERSION - valid values are: " "${OT_THREAD_VERSIO…
/openthread-latest/tools/harness-simulation/harness/Thread_Harness/Sniffer/
DSimSniffer.py90 for device_obj in deviceManager.DeviceList.values():
119 for sniffer in SnifferManager.SnifferObjects.values():
127 for sniffer in SnifferManager.SnifferObjects.values():
/openthread-latest/tools/tcat_ble_client/dataset/
Ddataset.py53 for entry in self.entries.values():
/openthread-latest/tests/unit/
Dtest_heap_array.cpp122 int values[] = {aArgs..., 0}; in VerifyArray() local
144 VerifyEntry(entry, aArray, values[index]); in VerifyArray()
160 printf("%u ", values[index]); in VerifyArray()
/openthread-latest/src/cli/
DREADME_SRP_SERVER.md153 Get LEASE and KEY-LEASE values.
164 Set LEASE and KEY-LEASE values.
/openthread-latest/third_party/mbedtls/repo/scripts/
Dconfig.py140 for setting in self.settings.values():
149 for setting in self.settings.values():
/openthread-latest/third_party/mbedtls/repo/tests/data_files/
Dtest-ca.opensslconf95 # these IPs are the ascii values for 'abcd' and 'abcd.example.com'
/openthread-latest/tests/scripts/thread-cert/pktverify/
Dsummary.py164 show_roles = "\n\t\t".join(map(str, self._role_to_node.values()))

1234