/openthread-3.7.0/src/core/thread/ |
D | neighbor.cpp | 70 bool matches = false; in Matches() local 84 matches = true; in Matches() 87 return matches; in Matches() 146 bool matches = false; in MatchesFilter() local 151 matches = IsStateValid(); in MatchesFilter() 155 matches = IsStateValidOrRestoring(); in MatchesFilter() 159 matches = IsStateChildIdRequest(); in MatchesFilter() 163 matches = IsStateValidOrAttaching(); in MatchesFilter() 167 matches = IsStateInvalid(); in MatchesFilter() 171 matches = !IsStateInvalid(); in MatchesFilter() [all …]
|
D | network_data.cpp | 519 bool matches = true; in FindRlocs() local 526 matches = prefix.mOnMesh && (prefix.mDefaultRoute || prefix.mDp); in FindRlocs() 530 if (matches) in FindRlocs()
|
/openthread-3.7.0/src/core/common/ |
D | data.cpp | 43 bool matches = true; in MatchBytes() local 47 matches = (memcmp(aFirstBuffer, aSecondBuffer, aLength) == 0); in MatchBytes() 53 VerifyOrExit(aMatcher(*aFirstBuffer++, *aSecondBuffer++), matches = false); in MatchBytes() 57 return matches; in MatchBytes()
|
D | heap_data.cpp | 83 bool matches = false; in Matches() local 89 matches = (aLength == 0); in Matches() 93 matches = mData.MatchesBytesIn(aBuffer); in Matches() 97 return matches; in Matches()
|
/openthread-3.7.0/src/core/net/ |
D | dns_types.cpp | 106 bool matches = false; in Matches() local 116 matches = CompareAndSkipLabels(namePtr, aFirstLabel, kLabelSeparatorChar); in Matches() 117 VerifyOrExit(matches); in Matches() 120 matches = CompareAndSkipLabels(namePtr, aLabels, kLabelSeparatorChar); in Matches() 121 VerifyOrExit(matches); in Matches() 123 matches = CompareAndSkipLabels(namePtr, aDomain, kNullChar); in Matches() 136 matches = true; in Matches() 140 return matches; in Matches() 150 bool matches = false; in CompareAndSkipLabels() local 161 matches = true; in CompareAndSkipLabels() [all …]
|
D | ip6_address.cpp | 484 bool matches = true; in MatchesFilter() local 492 matches = !IsUnspecified() && !IsMulticast(); in MatchesFilter() 496 matches = IsMulticast(); in MatchesFilter() 500 matches = IsMulticastLargerThanRealmLocal(); in MatchesFilter() 504 return matches; in MatchesFilter()
|
D | tcp6.cpp | 526 bool matches = false; in Matches() local 535 matches = true; in Matches() 538 return matches; in Matches() 610 bool matches = false; in Matches() local 617 matches = true; in Matches() 620 return matches; in Matches()
|
D | udp6.cpp | 52 bool matches = false; in Matches() local 68 matches = true; in Matches() 71 return matches; in Matches()
|
D | dnssd_server.cpp | 809 bool matches = QueryNameMatches(aService.GetServiceName()); in QueryNameMatchesService() local 811 VerifyOrExit(!matches); in QueryNameMatchesService() 815 matches = QueryNameMatches(aService.GetSubTypeServiceNameAt(index)); in QueryNameMatchesService() 816 VerifyOrExit(!matches); in QueryNameMatchesService() 820 return matches; in QueryNameMatchesService()
|
D | mdns.cpp | 500 bool matches = false; in Matches() local 509 matches = true; in Matches() 512 return matches; in Matches() 4086 bool matches = false; in Matches() local 4089 matches = (mRxMessages.GetHead()->GetSenderAddress() == aAddress); in Matches() 4092 return matches; in Matches() 4990 bool matches = false; in Matches() local 5005 …matches = name.Matches(isSubType ? kSubServiceLabel : nullptr, mServiceType.AsCString(), kLocalDom… in Matches() 5008 return matches; in Matches() 5013 bool matches = false; in Matches() local [all …]
|
/openthread-3.7.0/third_party/mbedtls/repo/scripts/ |
D | generate_ssl_debug_helpers.py | 237 matches = list(sig_alg_pattern.finditer(source_code, start, end)) 238 if matches: 239 yield SignatureAlgorithmDefinition(source_code, definitions=matches) 296 matches = list(named_group_pattern.finditer(source_code, start, end)) 297 if matches: 298 yield NamedGroupDefinition(source_code, definitions=matches)
|
D | generate_errors.pl | 53 my @matches; 85 push @matches, [$name, $value, $description]; 106 foreach my $match (@matches)
|
/openthread-3.7.0/tests/unit/ |
D | test_ip_address.cpp | 325 bool matches = true; in CheckPrefix() local 334 matches = false; in CheckPrefix() 339 return matches; in CheckPrefix() 346 bool matches = true; in CheckPrefixInIid() local 355 matches = false; in CheckPrefixInIid() 360 return matches; in CheckPrefixInIid() 367 bool matches = true; in CheckInterfaceId() local 376 matches = false; in CheckInterfaceId() 381 return matches; in CheckInterfaceId()
|
D | test_array.cpp | 203 bool matches = false; in TestArrayCopyAndFindMatching() local 208 matches = true; in TestArrayCopyAndFindMatching() 211 matches = false; in TestArrayCopyAndFindMatching() 214 matches = ((mYear % 2) != 0); in TestArrayCopyAndFindMatching() 217 matches = ((mYear % 2) == 0); in TestArrayCopyAndFindMatching() 221 return matches; in TestArrayCopyAndFindMatching()
|
D | test_mac_frame.cpp | 42 bool matches = true; in CompareReversed() local 48 matches = false; in CompareReversed() 53 return matches; in CompareReversed() 58 bool matches = false; in CompareAddresses() local 74 matches = true; in CompareAddresses() 77 return matches; in CompareAddresses()
|
D | test_mdns.cpp | 360 bool matches = false; in MatchesTtl() local 377 matches = true; in MatchesTtl() 380 return matches; in MatchesTtl() 4622 bool matches = true; in Matches() local 4624 VerifyOrExit(aNumAddrs == mNumAddrs, matches = false); in Matches() 4630 ExitNow(matches = false); in Matches() 4635 return matches; in Matches()
|
/openthread-3.7.0/src/core/meshcop/ |
D | meshcop.cpp | 279 bool matches = true; in DoesAllMatch() local 285 matches = false; in DoesAllMatch() 290 return matches; in DoesAllMatch()
|
/openthread-3.7.0/third_party/mbedtls/repo/tests/scripts/ |
D | run-metatests.sh | 6 Run all the metatests whose platform matches any of the given PLATFORM.
|
/openthread-3.7.0/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_constant_time.function | 249 /* Construct data that matches, if same == -1, otherwise 307 /* Construct data that matches, except for specified byte (if in range). */
|
D | test_suite_ecdh.function | 476 /* Test the retrieved group id matches/*/
|
D | test_suite_bignum_mod_raw.function | 738 /* The result matches expected value */ 802 /* The result matches expected value */
|
D | test_suite_ctr_drbg.function | 520 // test that mbedtls_ctr_increment_counter behaviour matches reference
|
D | test_suite_gcm.function | 5 * and check that the output matches the expected output.
|
D | test_suite_ccm.function | 5 * and check that the output matches the expected output.
|
D | test_suite_rsa.function | 1430 /* Check that the written key matches with the one provided in input. */
|