Lines Matching refs:aDestination
1819 Error Mle::SendDataRequest(const Ip6::Address &aDestination) in SendDataRequest() argument
1830 error = SendDataRequest(aDestination, kTlvs, mRequestRouteTlv ? 2 : 1); in SendDataRequest()
1847 …ror Mle::SendDataRequestForLinkMetricsReport(const Ip6::Address &aDestination, in SendDataRequestForLinkMetricsReport() argument
1852 return SendDataRequest(aDestination, kTlvs, sizeof(kTlvs), &aQueryInfo); in SendDataRequestForLinkMetricsReport()
1855 Error Mle::SendDataRequest(const Ip6::Address &aDestination, in SendDataRequest() argument
1860 Error Mle::SendDataRequest(const Ip6::Address &aDestination, const uint8_t *aTlvs, uint8_t aTlvsLen… in SendDataRequest()
1878 SuccessOrExit(error = message->SendTo(aDestination)); in SendDataRequest()
1879 Log(kMessageSend, kTypeDataRequest, aDestination); in SendDataRequest()
2062 const Ip6::Address &aDestination) in SendChildUpdateResponse() argument
2125 SuccessOrExit(error = message->SendTo(aDestination)); in SendChildUpdateResponse()
2127 Log(kMessageSend, kTypeChildUpdateResponseAsChild, aDestination); in SendChildUpdateResponse()
2148 void Mle::SendAnnounce(uint8_t aChannel, const Ip6::Address &aDestination, AnnounceMode aMode) in SendAnnounce() argument
2175 SuccessOrExit(error = message->SendTo(aDestination)); in SendAnnounce()
2207 Error Mle::SendLinkMetricsManagementResponse(const Ip6::Address &aDestination, LinkMetrics::Status … in SendLinkMetricsManagementResponse() argument
2225 SuccessOrExit(error = message->SendTo(aDestination)); in SendLinkMetricsManagementResponse()
2234 Error Mle::SendLinkProbe(const Ip6::Address &aDestination, uint8_t aSeriesId, uint8_t *aBuf, uint8_… in SendLinkProbe() argument
2249 SuccessOrExit(error = message->SendTo(aDestination)); in SendLinkProbe()
4365 Error Mle::SendLinkMetricsManagementRequest(const Ip6::Address &aDestination, const ot::Tlv &aSubTl… in SendLinkMetricsManagementRequest() argument
4379 error = message->SendTo(aDestination); in SendLinkMetricsManagementRequest()
4536 void Mle::DelayedSender::ScheduleDataRequest(const Ip6::Address &aDestination, uint16_t aDelay) in ScheduleDataRequest() argument
4538 VerifyOrExit(!HasMatchingSchedule(kTypeDataRequest, aDestination)); in ScheduleDataRequest()
4539 AddSchedule(kTypeDataRequest, aDestination, aDelay, nullptr, 0); in ScheduleDataRequest()
4577 void Mle::DelayedSender::ScheduleAdvertisement(const Ip6::Address &aDestination, uint16_t aDelay) in ScheduleAdvertisement() argument
4579 VerifyOrExit(!HasMatchingSchedule(kTypeAdvertisement, aDestination)); in ScheduleAdvertisement()
4580 AddSchedule(kTypeAdvertisement, aDestination, aDelay, nullptr, 0); in ScheduleAdvertisement()
4630 void Mle::DelayedSender::ScheduleDiscoveryResponse(const Ip6::Address &aDestination, in ScheduleDiscoveryResponse() argument
4634 AddSchedule(kTypeDiscoveryResponse, aDestination, aDelay, &aInfo, sizeof(aInfo)); in ScheduleDiscoveryResponse()
4640 const Ip6::Address &aDestination, in AddSchedule() argument
4651 header.mDestination = aDestination; in AddSchedule()
4665 Log(kMessageDelay, aMessageType, aDestination); in AddSchedule()
4777 …ender::Match(const Schedule &aSchedule, MessageType aMessageType, const Ip6::Address &aDestination) in Match() argument
4783 return (header.mMessageType == aMessageType) && (header.mDestination == aDestination); in Match()
4786 …elayedSender::HasMatchingSchedule(MessageType aMessageType, const Ip6::Address &aDestination) const in HasMatchingSchedule()
4792 if (Match(schedule, aMessageType, aDestination)) in HasMatchingSchedule()
4802 …:DelayedSender::RemoveMatchingSchedules(MessageType aMessageType, const Ip6::Address &aDestination) in RemoveMatchingSchedules() argument
4806 if (Match(schedule, aMessageType, aDestination)) in RemoveMatchingSchedules()
4809 Log(kMessageRemoveDelayed, aMessageType, aDestination); in RemoveMatchingSchedules()
5196 Error Mle::TxMessage::SendTo(const Ip6::Address &aDestination) in SendTo() argument
5203 messageInfo.SetPeerAddr(aDestination); in SendTo()