Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 23 of 23) sorted by relevance

/openthread-latest/tests/unit/
Dtest_ip4_header.cpp60 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()
Dtest_ip6_header.cpp64 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/
DREADME_COMMISSIONER.md54 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).
DREADME_UDP.md160 - ip: the destination address.
161 - port: the UDP destination port.
183 - ip: the IPv6 destination address.
184 - port: the UDP destination port.
DREADME_DATASET.md536 Usage: `dataset mgmtgetcommand <active|pending> [address <destination>] [TLV list] [-x]`
Dcli.cpp3004 otIp6Address destination, target; in Process() local
3007 SuccessOrExit(error = aArgs[1].ParseAsIp6Address(destination)); in Process()
3010 otThreadSendAddressNotification(GetInstancePtr(), &destination, &target, &mlIid); in Process()
DREADME.md2136 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/
Dlink_metrics_manager.cpp290 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()
Dmesh_diag.cpp94 Ip6::Address destination; in DiscoverTopology() local
101destination.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/
Ddiscover_scanner.cpp72 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()
Dmle_router.cpp543 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 …]
Dmesh_forwarder_ftd.cpp63 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()
Dlowpan.cpp516 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()
Dmle.cpp1671 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 …]
Daddress_resolver.cpp781 Ip6::Address destination; in HandleTmf() local
836destination.SetToRoutingLocator(Get<Mle::Mle>().GetMeshLocalPrefix(), child.GetRloc16()); in HandleTmf()
838 SendAddressError(target, meshLocalIid, &destination); in HandleTmf()
/openthread-latest/src/core/meshcop/
Ddataset_manager_ftd.cpp243 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/
DOpenThread_WpanCtl.py1311 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)
DOpenThread_BR.py467 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)
DOpenThread.py1352 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/
Dtest_suite_bignum_core.function592 mbedtls_mpi_uint *X = NULL; /* destination - the in/out first operand */
Dtest_suite_ecp.function1855 * the destination mod residue, compare the two mod residues.
/openthread-latest/doc/
DDoxyfile.in1504 # output directory using the MATHJAX_RELPATH option. The destination directory
/openthread-latest/third_party/mbedtls/repo/
DChangeLog4045 without checking whether there is enough space in the destination. The