Home
last modified time | relevance | path

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

/openthread-3.5.0/tests/unit/
Dtest_ip4_header.cpp62 Address destination; in TestIp4Header() local
66 SuccessOrQuit(destination.FromString("10.0.0.1"), "Address::FromString() failed"); in TestIp4Header()
84 header.SetDestination(destination); in TestIp4Header()
90 VerifyOrQuit(header.GetDestination() == destination); in TestIp4Header()
99 …uit(memcmp(&headerBytes[Header::kDestinationAddressOffset], &destination, sizeof(destination)) == … in TestIp4Header()
117 …uit(memcmp(&headerBytes[Header::kDestinationAddressOffset], &destination, sizeof(destination)) == … in TestIp4Header()
Dtest_ip6_header.cpp66 Address destination; in TestIp6Header() local
70 …SuccessOrQuit(destination.FromString("1122:3344:5566::7788:99aa:bbcc:ddee:ff23"), "Address::FromSt… in TestIp6Header()
88 header.SetDestination(destination); in TestIp6Header()
96 VerifyOrQuit(header.GetDestination() == destination); in TestIp6Header()
106 …rQuit(memcmp(&headerBytes[Header::kDestinationFieldOffset], &destination, sizeof(destination)) == … in TestIp6Header()
/openthread-3.5.0/src/cli/
DREADME_COMMISSIONER.md50 Usage: `commissioner announce <mask> <count> <period> <destination>`
57 - destination: IPv6 destination for the message (may be multicast).
66 Usage: `commissioner energy <mask> <count> <period> <scanDuration> <destination>`
74 - destination: IPv6 destination for the message (may be multicast).
164 Usage: `commissioner panid <panid> <mask> <destination>`
170 - destination: IPv6 destination for the message (may be multicast).
DREADME_UDP.md158 - ip: the destination address.
159 - port: the UDP destination port.
181 - ip: the IPv6 destination address.
182 - port: the UDP destination port.
DREADME_DATASET.md349 Usage: `dataset mgmtgetcommand <active|pending> [address <destination>] [TLV list] [-x]`
DREADME.md1936 Locate the closest destination of an anycast address (i.e., find the destination's mesh local EID a…
1940 The closest destination is determined based on the the current routing table and path costs within …
1950 Locate the closest destination of a service anycast address:
Dcli.cpp2894 otIp6Address destination, target; in Process() local
2897 SuccessOrExit(error = aArgs[1].ParseAsIp6Address(destination)); in Process()
2900 otThreadSendAddressNotification(GetInstancePtr(), &destination, &target, &mlIid); in Process()
/openthread-3.5.0/src/core/utils/
Dlink_metrics_manager.cpp289 Ip6::Address destination; in ConfigureEap() local
294 destination.SetToLinkLocalAddress(neighbor->GetExtAddress()); in ConfigureEap()
300 …aInstance.Get<LinkMetrics::Initiator>().SendMgmtRequestEnhAckProbing(destination, enhAckFlags, &me… in ConfigureEap()
315 Ip6::Address destination; in UnregisterEap() local
319 destination.SetToLinkLocalAddress(neighbor->GetExtAddress()); in UnregisterEap()
321 …error = aInstance.Get<LinkMetrics::Initiator>().SendMgmtRequestEnhAckProbing(destination, enhAckFl… in UnregisterEap()
Dmesh_diag.cpp94 Ip6::Address destination; in DiscoverTopology() local
101 destination = Get<Mle::MleRouter>().GetMeshLocal16(); in DiscoverTopology()
102 destination.GetIid().SetLocator(Mle::Rloc16FromRouterId(routerId)); in DiscoverTopology()
104 …xit(error = Get<Client>().SendCommand(kUriDiagnosticGetRequest, Message::kPriorityLow, destination, in DiscoverTopology()
172 Ip6::Address destination; in SendQuery() local
179 destination = Get<Mle::MleRouter>().GetMeshLocal16(); in SendQuery()
180 destination.GetIid().SetLocator(aRloc16); in SendQuery()
182 …it(error = Get<Client>().SendCommand(kUriDiagnosticGetQuery, Message::kPriorityNormal, destination, in SendQuery()
/openthread-3.5.0/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.cpp528 Ip6::Address destination; in SendAdvertisement() local
563 destination.SetToLinkLocalAllNodesMulticast(); in SendAdvertisement()
564 SuccessOrExit(error = message->SendTo(destination)); in SendAdvertisement()
566 Log(kMessageSend, kTypeAdvertisement, destination); in SendAdvertisement()
581 Ip6::Address destination; in SendLinkRequest() local
585 destination.Clear(); in SendLinkRequest()
630 destination.SetToLinkLocalAllRoutersMulticast(); in SendLinkRequest()
647 destination.SetToLinkLocalAddress(aNeighbor->GetExtAddress()); in SendLinkRequest()
650 SuccessOrExit(error = message->SendTo(destination)); in SendLinkRequest()
652 Log(kMessageSend, kTypeLinkRequest, destination); in SendLinkRequest()
[all …]
Dlowpan.cpp517 uint16_t destination; in CompressUdp() local
522 destination = udpHeader.GetDestinationPort(); in CompressUdp()
524 if ((source & 0xfff0) == 0xf0b0 && (destination & 0xfff0) == 0xf0b0) in CompressUdp()
527 …SuccessOrExit(error = aFrameBuilder.AppendUint8((((source & 0xf) << 4) | (destination & 0xf)) & 0x… in CompressUdp()
533 SuccessOrExit(error = aFrameBuilder.AppendBigEndianUint16(destination)); in CompressUdp()
535 else if ((destination & 0xff00) == 0xf000) in CompressUdp()
539 SuccessOrExit(error = aFrameBuilder.AppendUint8(destination & 0xff)); in CompressUdp()
Dmle.cpp1733 Ip6::Address destination; in SendParentRequest() local
1757 destination.SetToLinkLocalAllRoutersMulticast(); in SendParentRequest()
1758 SuccessOrExit(error = message->SendTo(destination)); in SendParentRequest()
1763 Log(kMessageSend, kTypeParentRequestToRouters, destination); in SendParentRequest()
1767 Log(kMessageSend, kTypeParentRequestToRoutersReeds, destination); in SendParentRequest()
1791 Ip6::Address destination; in SendChildIdRequest() local
1834 destination.SetToLinkLocalAddress(mParentCandidate.GetExtAddress()); in SendChildIdRequest()
1835 SuccessOrExit(error = message->SendTo(destination)); in SendChildIdRequest()
1839 destination); in SendChildIdRequest()
2019 Ip6::Address destination; in HandleMessageTransmissionTimer() local
[all …]
Daddress_resolver.cpp759 Ip6::Address destination; in HandleTmf() local
814 … SuccessOrExit(error = Get<Mle::Mle>().GetLocatorAddress(destination, child.GetRloc16())); in HandleTmf()
816 SendAddressError(target, meshLocalIid, &destination); in HandleTmf()
/openthread-3.5.0/src/core/meshcop/
Ddataset_manager_ftd.cpp244 Ip6::Address destination; in HandleSet() local
251 …Get<Mle::MleRouter>().GetCommissionerAloc(destination, localSessionId->GetCommissionerSessionId())… in HandleSet()
253 Get<Leader>().SendDatasetChanged(destination); in HandleSet()
/openthread-3.5.0/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))
3035 def sendUdp(self, destination, port, payload='hello'): argument
3037 cmd = 'udp send %s %d %s' % (destination, port, payload)
3041 def send_udp(self, interface, destination, port, payload='12ABcd'): argument
3048 cmd = 'udp send %s %s -x %s' % (destination, port, payload)
/openthread-3.5.0/third_party/mbedtls/repo/doxygen/
Dmbedtls.doxyfile1211 # HTML output directory using the MATHJAX_RELPATH option. The destination
/openthread-3.5.0/doc/
DDoxyfile.in1504 # output directory using the MATHJAX_RELPATH option. The destination directory
/openthread-3.5.0/third_party/mbedtls/repo/
DChangeLog2450 without checking whether there is enough space in the destination. The