Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 29) sorted by relevance

12

/openthread-3.6.0/tests/scripts/thread-cert/pktverify/
Dpacket.py77 for l in self._packet.layers:
78 if l.layer_name != 'data':
79 yield getattr(self, l.layer_name)
83 return [l.layer_name for l in self._packet.layers if l.layer_name != 'data']
Dtest_info.py52 … self.ipaddrs = {int(k): [Ipv6Addr(x) for x in l] for k, l in test_info.get('ipaddrs', {}).items()}
56 … self.omrs = {int(k): [Ipv6Addr(x) for x in l] for k, l in test_info.get('omrs', {}).items()}
Dutils.py93 disabled_protos = set(l.strip() for l in fd if l.strip() != '')
Dtest_layer_fields.py172 for layer in sorted(p.layers, key=lambda l: l.layer_name):
/openthread-3.6.0/tools/harness-automation/doc/
Dquickstart.rst54 ./start.sh -l
57 start.bat -l
65 ./start.sh -l COM28
68 start.bat -l COM28
/openthread-3.6.0/tests/scripts/misc/
Dtest_multicast_join.py41 return [ip_address(l) for l in lines if l.startswith('ff')]
/openthread-3.6.0/third_party/mbedtls/repo/tests/src/
Dhelpers.c178 unsigned char l, h; in mbedtls_test_hexify() local
183 l = *ibuf % 16; in mbedtls_test_hexify()
190 if( l < 10 ) in mbedtls_test_hexify()
191 *obuf++ = '0' + l; in mbedtls_test_hexify()
193 *obuf++ = 'a' + l - 10; in mbedtls_test_hexify()
/openthread-3.6.0/src/lib/spinel/
Dspinel.c122 #define require_action(c, l, a) \ argument
129 goto l; \
133 #define require_action(c, l, a) \ argument
139 goto l; \
146 #define require(c, l) require_action(c, l, {}) argument
1691 uint32_t l = 0; in main() local
1695 …len = spinel_datatype_unpack(buffer, (spinel_size_t)len, "CiiLUE", &c, &i1, &i2, &l, &str, &eui64); in main()
1721 if (l != 0xDEADBEEF) in main()
1723 printf("error: l != 0xDEADBEEF; (0x%08X)\n", (unsigned int)l); in main()
1744 uint32_t l = 0; in main() local
[all …]
/openthread-3.6.0/third_party/tcplp/bsdtcp/
Dtcp_fastopen.h105 #define tcp_fastopen_check_cookie(i, c, l, lc) (-1) argument
108 #define tcp_fastopen_update_cache(t, m, l, c) ((void)0) argument
/openthread-3.6.0/third_party/mbedtls/repo/scripts/data_files/
Dvs6-main-template.dsp45 # ADD BASE RSC /l 0x40c /d "NDEBUG"
46 # ADD RSC /l 0x40c /d "NDEBUG"
68 # ADD BASE RSC /l 0x40c /d "_DEBUG"
69 # ADD RSC /l 0x40c /d "_DEBUG"
Dvs6-app-template.dsp45 # ADD BASE RSC /l 0x40c /d "NDEBUG"
46 # ADD RSC /l 0x40c /d "NDEBUG"
68 # ADD BASE RSC /l 0x40c /d "_DEBUG"
69 # ADD RSC /l 0x40c /d "_DEBUG"
/openthread-3.6.0/tools/otci/otci/
Dcommand_handlers.py267 errput = [l.rstrip('\r\n') for l in cmd_err.readlines()]
268 output = [l.rstrip('\r\n') for l in cmd_out.readlines()]
/openthread-3.6.0/src/ncp/
Dncp_base_dispatcher.cpp763 size_t l = 0; in FindPropertyHandler() local
767 for (size_t r = aSize - 1; l < r;) in FindPropertyHandler()
769 size_t m = (l + r) / 2; in FindPropertyHandler()
773 l = m + 1; in FindPropertyHandler()
781 return aHandlerEntries[l].mKey == aKey ? aHandlerEntries[l].mHandler : nullptr; in FindPropertyHandler()
/openthread-3.6.0/third_party/mbedtls/repo/tests/data_files/
Drsa_pkcs1_1024_aes256.pem13 BtMGL7qA/l/gmhHRYDpkzf+ewuTeOImyyfEnAawVT3+G6p3tf/Cs9RVgUCnCrFHa
Drsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem25 l/jMr/za+6TrtXyNBDGpZohgxP0wT4+hAMyLGymYnSWFlRVkkf0BANbtcJBszbAZ
Drsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem5 Vl0lEsKpH//6vsvGCB2ZXd92nfVW8zJcCWAn6wCK6tjozH/l/M6z1cSXSEppvmZ1
/openthread-3.6.0/tests/scripts/expect/
Dposix-rcp-stack-reset.exp40 if {[exec head -n2 $socat_out | wc -l] == 2} {
Dposix-rcp-restoration.exp40 if {[exec head -n2 $socat_out | wc -l] == 2} {
/openthread-3.6.0/tools/harness-automation/
DREADME.rst25 If ``-l`` is given, ``NAME`` is the serial port device name. Otherwise ``NAME`` is test case name. …
/openthread-3.6.0/third_party/mbedtls/repo/programs/fuzz/
DREADME.md62 for l in f.readlines():
63 portAndPl=l.split()
/openthread-3.6.0/third_party/mbedtls/repo/library/
Decp.c1703 mbedtls_mpi l, ll; in ecp_randomize_jac() local
1705 mbedtls_mpi_init( &l ); mbedtls_mpi_init( &ll ); in ecp_randomize_jac()
1708 MBEDTLS_MPI_CHK( mbedtls_mpi_random( &l, 2, &grp->P, f_rng, p_rng ) ); in ecp_randomize_jac()
1711 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &pt->Z, &pt->Z, &l ) ); in ecp_randomize_jac()
1714 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ll, &l, &l ) ); in ecp_randomize_jac()
1718 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mod( grp, &ll, &ll, &l ) ); in ecp_randomize_jac()
1722 mbedtls_mpi_free( &l ); mbedtls_mpi_free( &ll ); in ecp_randomize_jac()
2474 mbedtls_mpi l; in ecp_randomize_mxz() local
2475 mbedtls_mpi_init( &l ); in ecp_randomize_mxz()
2478 MBEDTLS_MPI_CHK( mbedtls_mpi_random( &l, 2, &grp->P, f_rng, p_rng ) ); in ecp_randomize_mxz()
[all …]
Dbignum.c1190 const mbedtls_mpi_uint *l, in mpi_sub_hlp() argument
1198 z = ( l[i] < c ); t = l[i] - c; in mpi_sub_hlp()
/openthread-3.6.0/tools/harness-thci/
DOpenThread_BR.py263 self.__lines += [l.rstrip('\r') for l in LINESEPX.split(tail)]
/openthread-3.6.0/tests/scripts/thread-cert/
Dv1_2_LowPower_7_2_01_ForwardTrackingSeries.py198 .filter(lambda p: 1 in p.mle.tlv.metric_type_id_flags.l) \
Dnode.py1497 lines = [l.strip() for l in lines]
1499 for l in lines:
1500 z = re.search(r'seqno:\s+([0-9]+)', l)
1504 z = re.search(r'delay:\s+([0-9]+)', l)
1508 z = re.search(r'timeout:\s+([0-9]+)', l)
3181 lines = [l.strip() for l in lines]

12