/openthread-latest/tests/unit/ |
D | test_ip4_header.cpp | 60 Address destination; in TestIp4Header() local 64 SuccessOrQuit(destination.FromString("10.0.0.1"), "Address::FromString() failed"); in TestIp4Header() 82 header.SetDestination(destination); in TestIp4Header() 88 VerifyOrQuit(header.GetDestination() == destination); in TestIp4Header() 98 …uit(memcmp(&headerBytes[Header::kDestinationAddressOffset], &destination, sizeof(destination)) == … in TestIp4Header() 116 …uit(memcmp(&headerBytes[Header::kDestinationAddressOffset], &destination, sizeof(destination)) == … in TestIp4Header()
|
D | test_ip6_header.cpp | 64 Address destination; in TestIp6Header() local 68 …SuccessOrQuit(destination.FromString("1122:3344:5566::7788:99aa:bbcc:ddee:ff23"), "Address::FromSt… in TestIp6Header() 86 header.SetDestination(destination); in TestIp6Header() 94 VerifyOrQuit(header.GetDestination() == destination); in TestIp6Header() 104 …rQuit(memcmp(&headerBytes[Header::kDestinationFieldOffset], &destination, sizeof(destination)) == … in TestIp6Header()
|
/openthread-latest/src/cli/ |
D | README_COMMISSIONER.md | 54 Usage: `commissioner announce <mask> <count> <period> <destination>` 61 - destination: IPv6 destination for the message (may be multicast). 70 Usage: `commissioner energy <mask> <count> <period> <scanDuration> <destination>` 78 - destination: IPv6 destination for the message (may be multicast). 168 Usage: `commissioner panid <panid> <mask> <destination>` 174 - destination: IPv6 destination for the message (may be multicast).
|
D | README_UDP.md | 160 - ip: the destination address. 161 - port: the UDP destination port. 183 - ip: the IPv6 destination address. 184 - port: the UDP destination port.
|
D | README_DATASET.md | 536 Usage: `dataset mgmtgetcommand <active|pending> [address <destination>] [TLV list] [-x]`
|
D | cli.cpp | 3004 otIp6Address destination, target; in Process() local 3007 SuccessOrExit(error = aArgs[1].ParseAsIp6Address(destination)); in Process() 3010 otThreadSendAddressNotification(GetInstancePtr(), &destination, &target, &mlIid); in Process()
|
D | README.md | 2136 Locate the closest destination of an anycast address (i.e., find the destination's mesh local EID a… 2140 The closest destination is determined based on the the current routing table and path costs within … 2150 Locate the closest destination of a service anycast address: 2888 Get the next hop (as RLOC16) and path cost towards a given RLOC16 destination.
|
/openthread-latest/src/core/utils/ |
D | link_metrics_manager.cpp | 290 Ip6::Address destination; in ConfigureEap() local 295 destination.SetToLinkLocalAddress(neighbor->GetExtAddress()); in ConfigureEap() 301 …aInstance.Get<LinkMetrics::Initiator>().SendMgmtRequestEnhAckProbing(destination, enhAckFlags, &me… in ConfigureEap() 316 Ip6::Address destination; in UnregisterEap() local 320 destination.SetToLinkLocalAddress(neighbor->GetExtAddress()); in UnregisterEap() 322 …error = aInstance.Get<LinkMetrics::Initiator>().SendMgmtRequestEnhAckProbing(destination, enhAckFl… in UnregisterEap()
|
D | mesh_diag.cpp | 94 Ip6::Address destination; in DiscoverTopology() local 101 …destination.SetToRoutingLocator(Get<Mle::Mle>().GetMeshLocalPrefix(), Mle::Rloc16FromRouterId(rout… in DiscoverTopology() 103 …xit(error = Get<Client>().SendCommand(kUriDiagnosticGetRequest, Message::kPriorityLow, destination, in DiscoverTopology() 171 Ip6::Address destination; in SendQuery() local 178 destination.SetToRoutingLocator(Get<Mle::Mle>().GetMeshLocalPrefix(), aRloc16); in SendQuery() 180 …it(error = Get<Client>().SendCommand(kUriDiagnosticGetQuery, Message::kPriorityNormal, destination, in SendQuery()
|
/openthread-latest/src/core/thread/ |
D | discover_scanner.cpp | 72 Ip6::Address destination; in Discover() local 136 destination.SetToLinkLocalAllRoutersMulticast(); in Discover() 138 SuccessOrExit(error = message->SendTo(destination)); in Discover() 161 Mle::Log(Mle::kMessageSend, Mle::kTypeDiscoveryRequest, destination); in Discover()
|
D | mle_router.cpp | 543 Ip6::Address destination; in SendAdvertisement() local 580 destination.SetToLinkLocalAllNodesMulticast(); in SendAdvertisement() 581 SuccessOrExit(error = message->SendTo(destination)); in SendAdvertisement() 583 Log(kMessageSend, kTypeAdvertisement, destination); in SendAdvertisement() 598 Ip6::Address destination; in SendLinkRequest() local 602 destination.Clear(); in SendLinkRequest() 647 destination.SetToLinkLocalAllRoutersMulticast(); in SendLinkRequest() 664 destination.SetToLinkLocalAddress(aNeighbor->GetExtAddress()); in SendLinkRequest() 667 SuccessOrExit(error = message->SendTo(destination)); in SendLinkRequest() 669 Log(kMessageSend, kTypeLinkRequest, destination); in SendLinkRequest() [all …]
|
D | mesh_forwarder_ftd.cpp | 63 const Ip6::Address &destination = ip6Header.GetDestination(); in SendMessage() local 67 if (destination.IsMulticast()) in SendMessage() 73 if (!destination.IsMulticastLargerThanRealmLocal()) in SendMessage() 85 … bool destinedForAll = ((destination == Get<Mle::Mle>().GetLinkLocalAllThreadNodesAddress()) || in SendMessage() 86 … (destination == Get<Mle::Mle>().GetRealmLocalAllThreadNodesAddress())); in SendMessage() 90 … if (!child.IsRxOnWhenIdle() && (destinedForAll || child.HasIp6Address(destination))) in SendMessage() 99 Neighbor *neighbor = Get<NeighborTable>().FindNeighbor(destination); in SendMessage()
|
D | lowpan.cpp | 516 uint16_t destination; in CompressUdp() local 521 destination = udpHeader.GetDestinationPort(); in CompressUdp() 523 if ((source & 0xfff0) == 0xf0b0 && (destination & 0xfff0) == 0xf0b0) in CompressUdp() 526 …SuccessOrExit(error = aFrameBuilder.AppendUint8((((source & 0xf) << 4) | (destination & 0xf)) & 0x… in CompressUdp() 532 SuccessOrExit(error = aFrameBuilder.AppendBigEndianUint16(destination)); in CompressUdp() 534 else if ((destination & 0xff00) == 0xf000) in CompressUdp() 538 SuccessOrExit(error = aFrameBuilder.AppendUint8(destination & 0xff)); in CompressUdp()
|
D | mle.cpp | 1671 Ip6::Address destination; in SendParentRequest() local 1695 destination.SetToLinkLocalAllRoutersMulticast(); in SendParentRequest() 1696 SuccessOrExit(error = message->SendTo(destination)); in SendParentRequest() 1701 Log(kMessageSend, kTypeParentRequestToRouters, destination); in SendParentRequest() 1705 Log(kMessageSend, kTypeParentRequestToRoutersReeds, destination); in SendParentRequest() 1750 Ip6::Address destination; in SendChildIdRequest() local 1795 destination.SetToLinkLocalAddress(mParentCandidate.GetExtAddress()); in SendChildIdRequest() 1796 SuccessOrExit(error = message->SendTo(destination)); in SendChildIdRequest() 1800 destination); in SendChildIdRequest() 1972 Ip6::Address destination; in HandleMessageTransmissionTimer() local [all …]
|
D | address_resolver.cpp | 781 Ip6::Address destination; in HandleTmf() local 836 … destination.SetToRoutingLocator(Get<Mle::Mle>().GetMeshLocalPrefix(), child.GetRloc16()); in HandleTmf() 838 SendAddressError(target, meshLocalIid, &destination); in HandleTmf()
|
/openthread-latest/src/core/meshcop/ |
D | dataset_manager_ftd.cpp | 243 Ip6::Address destination; in HandleSetOrReplace() local 246 Get<Mle::Mle>().GetCommissionerAloc(localSessionId, destination); in HandleSetOrReplace() 247 Get<Leader>().SendDatasetChanged(destination); in HandleSetOrReplace()
|
/openthread-latest/tools/harness-thci/ |
D | OpenThread_WpanCtl.py | 1311 def ping(self, destination, length=20): argument 1320 print('destination: %s' % destination) 1322 cmd = 'ping %s -c 1 -s %s -I %s' % (destination, str(length), self.wpan_interface) 1333 def multicast_Ping(self, destination, length=20): argument 1342 print('destination: %s' % destination) 1344 cmd = 'ping %s -c 1 -s %s -I %s' % (destination, str(length), self.wpan_interface)
|
D | OpenThread_BR.py | 467 def multicast_Ping(self, destination, length=20): argument 482 cmd = 'ping -6 -I %s %s -c 1 -s %d -t %d' % (ifName, destination, str(length), hop_limit)
|
D | OpenThread.py | 1352 def multicast_Ping(self, destination, length=20): argument 1360 cmd = 'ping %s %s' % (destination, str(length)) 3038 def sendUdp(self, destination, port, payload='hello'): argument 3040 cmd = 'udp send %s %d %s' % (destination, port, payload) 3044 def send_udp(self, interface, destination, port, payload='12ABcd'): argument 3051 cmd = 'udp send %s %s -x %s' % (destination, port, payload)
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_bignum_core.function | 592 mbedtls_mpi_uint *X = NULL; /* destination - the in/out first operand */
|
D | test_suite_ecp.function | 1855 * the destination mod residue, compare the two mod residues.
|
/openthread-latest/doc/ |
D | Doxyfile.in | 1504 # output directory using the MATHJAX_RELPATH option. The destination directory
|
/openthread-latest/third_party/mbedtls/repo/ |
D | ChangeLog | 4045 without checking whether there is enough space in the destination. The
|