Home
last modified time | relevance | path

Searched refs:uriPath (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/utils/
Dotns.cpp159 char uriPath[Coap::Message::kMaxReceivedUriPath + 1]; in EmitCoapSend() local
162 SuccessOrExit(error = aMessage.ReadUriPathOptions(uriPath)); in EmitCoapSend()
164 …=send,%d,%d,%d,%s,%s,%d", aMessage.GetMessageId(), aMessage.GetType(), aMessage.GetCode(), uriPath, in EmitCoapSend()
173 char uriPath[Coap::Message::kMaxReceivedUriPath + 1]; in EmitCoapReceive() local
176 SuccessOrExit(error = aMessage.ReadUriPathOptions(uriPath)); in EmitCoapReceive()
178 …=recv,%d,%d,%d,%s,%s,%d", aMessage.GetMessageId(), aMessage.GetType(), aMessage.GetCode(), uriPath, in EmitCoapReceive()
186 char uriPath[Coap::Message::kMaxReceivedUriPath + 1]; in EmitCoapSendFailure() local
189 SuccessOrExit(error = aMessage.ReadUriPathOptions(uriPath)); in EmitCoapSendFailure()
192uriPath, aMessageInfo.GetPeerAddr().ToString().AsCString(), aMessageInfo.GetPeerPort(), in EmitCoapSendFailure()
/openthread-latest/src/core/coap/
Dcoap.cpp1280 char uriPath[Message::kMaxReceivedUriPath + 1]; in ProcessReceivedRequest() local
1285 char *curUriPath = uriPath; in ProcessReceivedRequest()
1319 if (curUriPath != uriPath) in ProcessReceivedRequest()
1324 …VerifyOrExit(curUriPath + iterator.GetOption()->GetLength() < GetArrayEnd(uriPath), error = kError… in ProcessReceivedRequest()
1354 if (!StringMatch(resource.GetUriPath(), uriPath)) in ProcessReceivedRequest()
1410 SuccessOrExit(error = aMessage.ReadUriPathOptions(uriPath)); in ProcessReceivedRequest()
1413 if ((mResourceHandler != nullptr) && mResourceHandler(*this, uriPath, aMessage, aMessageInfo)) in ProcessReceivedRequest()
1421 if (StringMatch(resource.mUriPath, uriPath)) in ProcessReceivedRequest()