Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 61) sorted by relevance

123

/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dc_parsing_helper.py45 self.type = self.normalize_type(m.group('type')) #type: str
46 self.name = m.group('name') #type: Optional[str]
47 self.suffix = m.group('suffix') if m.group('suffix') else '' #type: str
91 lambda m: re.sub(_NOT_NEWLINES_RE, "", m.group(0)),
120 qualifiers = m.group('qualifiers').split()
121 return_type = m.group('return_type')
122 name = m.group('name')
123 arguments = m.group('arguments').split(',')
Dcrypto_knowledge.py92 self.name = m.group(1)
93 params = m.group(2).split(',')
109 self.head = re.sub(r'_(?:PUBLIC_KEY|KEY_PAIR)\Z', r'', m.group(1))
313 expr = m.group(1)
326 head = m.group(1)
331 head = m.group(1)
424 kdf_alg = m.group(1)
466 return int(m.group(1)) // 8
494 max_length = cls.hash_length(m.group(1))
512 base = m.group('base')
[all …]
Dmacro_collector.py470 name = m.group(1)
476 dest = self.table_by_prefix.get(m.group(2))
480 if m.group(3):
481 self.argspecs[name] = self._argument_split(m.group(3))
539 self.add_test_case_line(m.group(1), m.group(2))
/openthread-latest/tests/scripts/thread-cert/
Dmcast6.py77 ifname, group = args
80 sender(ifname, group)
82 receiver(ifname, group, is_multicast_receiver=is_multicast_receiver)
85 def sender(ifname, group): argument
86 addrinfo = socket.getaddrinfo(group, None)[0]
102 def receiver(ifname, group, is_multicast_receiver=True): argument
104 addrinfo = socket.getaddrinfo(group, None)[0]
/openthread-latest/tests/scripts/misc/
Dtest_multicast_join.py45 group = 'ff02::158'
52 struct.pack('16si', socket.inet_pton(socket.AF_INET6, group), if_index))
56 if not any(addr == ip_address(group) for addr in maddrs):
60 struct.pack('16si', socket.inet_pton(socket.AF_INET6, group), if_index))
65 if any(addr == ip_address(group) for addr in maddrs):
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md66 …to_init`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__initializat…
76group/group__error/#group__error_1ga05676e70ba5c6a7565aff3c36677c1f9): `PSA_SUCCESS == 0` for succ…
92group/group__import__export/#group__import__export_1ga0336ea76bf30587ab204a8296462327b) if you hav…
94 …roy_key`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__key__manage…
98group/group__import__export/#group__import__export_1ga668e35be8d2852ad3feeef74ac6f75bf). If you ne…
271 …onstants](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__crypto__typ…
274 [`PSA_KEY_TYPE_AES`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__c…
275 [`PSA_KEY_TYPE_ARIA`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__…
276 [`PSA_KEY_TYPE_CAMELLIA`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/gro…
277 [`PSA_KEY_TYPE_DES`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__c…
[all …]
/openthread-latest/
DBUILD.gn68 group("libopenthread-ftd") {
73 group("libopenthread-mtd") {
78 group("libopenthread-radio") {
83 group("libopenthread-cli-ftd") {
88 group("libopenthread-cli-mtd") {
93 group("libopenthread-spinel-ncp") {
98 group("libopenthread-spinel-rcp") {
104 group("lib-ot-core") {
/openthread-latest/tools/harness-automation/
Dparse_topofile.py108 if 'all' not in case_list and matched_case.group(1) not in case_list:
111 logging.info('case %s:' % matched_case.group(1))
113 case_list.remove(matched_case.group(1))
114 role_vendor_str = matched_case.group(2)
/openthread-latest/third_party/mbedtls/repo/scripts/
Dconfig.py426 elif m.group('section'):
427 self.current_section = m.group('section')
430 active = not m.group('commented_out')
431 name = m.group('name')
432 value = m.group('value')
434 m.group('indentation'),
435 m.group('define') + name +
436 m.group('arguments') + m.group('separator'))
Dgenerate_ssl_debug_helpers.py32 return match.group()
153 group=match.groupdict())
155 def __init__(self, source_code, span=None, group=None): argument
156 assert isinstance(group, dict)
157 prefix_name = group.get('prefix_name', None)
158 suffix_name = group.get('suffix_name', None)
159 body = group.get('body', None)
Dassemble_changelog.py133 top_version_title = m.group(1)
134 top_version_body = m.group(2)
135 name = re.match(cls._name_re, top_version_title).group(1)
165 return [CategoryContent(title_match.group(1), title_line,
309 return m.group(0)
/openthread-latest/third_party/mbedtls/repo/programs/psa/
Dpsa_constant_names.c68 static const char *psa_dh_family_name(psa_dh_family_t group);
92 psa_dh_family_t group) in append_with_group() argument
94 const char *group_name = psa_dh_family_name(group); in append_with_group()
102 "0x%02x", group); in append_with_group()
161 psa_dh_family_t group) in psa_snprint_dh_group() argument
163 const char *name = psa_dh_family_name(group); in psa_snprint_dh_group()
165 return snprintf(buffer, buffer_size, "0x%02x", (unsigned) group); in psa_snprint_dh_group()
/openthread-latest/tools/tcat_ble_client/
Dbbtc.py55 group = parser.add_mutually_exclusive_group()
56 group.add_argument('--mac', type=str, help='Device MAC address', action='store')
57 group.add_argument('--name', type=str, help='Device name', action='store')
58 group.add_argument('--scan', help='Scan all available devices', action='store_true')
59 group.add_argument('--simulation', help='Connect to simulation node id', action='store')
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dcheck_names.py390 if macro.group("macro").startswith(exclusions):
398 macro.group("macro")))
436 name.group(0)))
492 enum_const.group("enum_const")))
531 lambda s: '""' if s.group('string') else ' ',
618 for group in identifier.groups():
619 if not group:
627 group))
762 if (symbol and not symbol.group("symbol").startswith(exclusions)):
763 symbols.append(symbol.group("symbol"))
[all …]
Dgenerate_test_code.py433 dependencies = parse_dependencies(match.group('dependencies'))
458 dep_str = match.group('depends_on')
462 dependencies += parse_dependencies(match.group('dependencies'))
526 arg_list = m.group(1).strip()
639 name = match.group('func_name')
744 lambda m: m.group(1) or '\n', inp_str,
794 match.group('dependencies'))
833 _defined = '' if dependency.group(2) else 'defined'
834 _cond = dependency.group(2) if dependency.group(2) else ''
835 _value = dependency.group(3) if dependency.group(3) else ''
[all …]
Dcheck_files.py182 interpreter = m.group(1) or m.group(2)
425 if m and m.group(1) != self.COPYRIGHT_HOLDER:
431 if m.group(1) != self.SPDX_HEADER_KEY:
434 if not m.group(3):
437 if m.group(3) != self.LICENSE_IDENTIFIER:
Daudit-validity-dates.py37 if match is None or int(match.group(0)) < 35:
151 return m.group('type').decode('UTF-8')
361 if not X509Parser.check_hex_string(match.group('data')):
363 audit_data = self.parse_bytes(bytes.fromhex(match.group('data')))
Dset_psa_test_dependencies.py206 arguments = content_matches[-1].group(0).split(':')
222 old_dependencies = dependencies_match.group(0).split(':')
/openthread-latest/src/core/net/
Dip6_mpl.cpp165 SeedEntry *group = mSeedSet; in UpdateSeedSet() local
187 if (mSeedSet[i].mSeedId != group->mSeedId) in UpdateSeedSet()
191 if (aSeedId == group->mSeedId && insert == nullptr) in UpdateSeedSet()
201 evict = group; in UpdateSeedSet()
205 group = &mSeedSet[i]; in UpdateSeedSet()
234 if (aSeedId == group->mSeedId && insert == nullptr) in UpdateSeedSet()
244 evict = group; in UpdateSeedSet()
/openthread-latest/tools/harness-simulation/posix/
Dlaunch_testbed.py66 def init_socket(ifname: str, group: str, port: int) -> socket.socket:
68 addrinfo = socket.getaddrinfo(group, None)[0]
76 s.bind((group, port))
/openthread-latest/third_party/build_gn/toolchain/
DBUILD.gn58 …command = "g++ {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{li…
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls13_server.c934 uint16_t group; in ssl_tls13_parse_key_shares_ext() local
945 group = MBEDTLS_GET_UINT16_BE(p, 0); in ssl_tls13_parse_key_shares_ext()
955 if (!mbedtls_ssl_named_group_is_offered(ssl, group) || in ssl_tls13_parse_key_shares_ext()
956 !mbedtls_ssl_named_group_is_supported(group) || in ssl_tls13_parse_key_shares_ext()
964 if (mbedtls_ssl_tls13_named_group_is_ecdhe(group) || in ssl_tls13_parse_key_shares_ext()
965 mbedtls_ssl_tls13_named_group_is_ffdh(group)) { in ssl_tls13_parse_key_shares_ext()
967 mbedtls_ssl_named_group_to_str(group), in ssl_tls13_parse_key_shares_ext()
968 group)); in ssl_tls13_parse_key_shares_ext()
977 (unsigned) group)); in ssl_tls13_parse_key_shares_ext()
981 ssl->handshake->offered_group_id = group; in ssl_tls13_parse_key_shares_ext()
[all …]
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ecp.data352 Check ECP group metadata #1 secp192k1 (SEC 2)
356 Check ECP group metadata #2 secp192r1 (SEC 2)
360 Check ECP group metadata #3 secp224k1 (SEC 2)
364 Check ECP group metadata #4 secp224r1 (SEC 2)
368 Check ECP group metadata #5 secp256k1 (SEC 2)
372 Check ECP group metadata #6 secp256r1 (SEC 2)
376 Check ECP group metadata #7 secp384r1 (SEC 2)
380 Check ECP group metadata #8 secp521r1 (SEC 2)
384 Check ECP group metadata #9 bp256r1 (RFC 5639)
388 Check ECP group metadata #10 bp384r1 (RFC 5639)
[all …]
/openthread-latest/tools/harness-automation/cases_R140/
Dleader_5_5_1.py47 timeout = int(match.group(0)) / 2
/openthread-latest/tools/harness-automation/cases/
Dleader_5_5_1.py47 timeout = int(match.group(0)) / 2

123