Lines Matching refs:otMessage

42 otMessage *otCoapNewMessage(otInstance *aInstance, const otMessageSettings *aSettings)  in otCoapNewMessage()
47 void otCoapMessageInit(otMessage *aMessage, otCoapType aType, otCoapCode aCode) in otCoapMessageInit()
52 otError otCoapMessageInitResponse(otMessage *aResponse, const otMessage *aRequest, otCoapType aType… in otCoapMessageInitResponse()
63 otError otCoapMessageSetToken(otMessage *aMessage, const uint8_t *aToken, uint8_t aTokenLength) in otCoapMessageSetToken()
68 void otCoapMessageGenerateToken(otMessage *aMessage, uint8_t aTokenLength) in otCoapMessageGenerateToken()
73 otError otCoapMessageAppendContentFormatOption(otMessage *aMessage, otCoapOptionContentFormat aCont… in otCoapMessageAppendContentFormatOption()
78 otError otCoapMessageAppendOption(otMessage *aMessage, uint16_t aNumber, uint16_t aLength, const vo… in otCoapMessageAppendOption()
83 otError otCoapMessageAppendUintOption(otMessage *aMessage, uint16_t aNumber, uint32_t aValue) in otCoapMessageAppendUintOption()
88 otError otCoapMessageAppendObserveOption(otMessage *aMessage, uint32_t aObserve) in otCoapMessageAppendObserveOption()
93 otError otCoapMessageAppendUriPathOptions(otMessage *aMessage, const char *aUriPath) in otCoapMessageAppendUriPathOptions()
98 otError otCoapMessageAppendUriQueryOptions(otMessage *aMessage, const char *aUriQuery) in otCoapMessageAppendUriQueryOptions()
108 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock2Option()
113 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock1Option()
118 otError otCoapMessageAppendProxyUriOption(otMessage *aMessage, const char *aUriPath) in otCoapMessageAppendProxyUriOption()
123 otError otCoapMessageAppendMaxAgeOption(otMessage *aMessage, uint32_t aMaxAge) in otCoapMessageAppendMaxAgeOption()
128 otError otCoapMessageAppendUriQueryOption(otMessage *aMessage, const char *aUriQuery) in otCoapMessageAppendUriQueryOption()
133 otError otCoapMessageSetPayloadMarker(otMessage *aMessage) { return AsCoapMessage(aMessage).SetPayl… in otCoapMessageSetPayloadMarker()
135 otCoapType otCoapMessageGetType(const otMessage *aMessage) in otCoapMessageGetType()
140 otCoapCode otCoapMessageGetCode(const otMessage *aMessage) in otCoapMessageGetCode()
145 void otCoapMessageSetCode(otMessage *aMessage, otCoapCode aCode) { AsCoapMessage(aMessage).SetCode(… in otCoapMessageSetCode()
147 const char *otCoapMessageCodeToString(const otMessage *aMessage) { return AsCoapMessage(aMessage).C… in otCoapMessageCodeToString()
149 uint16_t otCoapMessageGetMessageId(const otMessage *aMessage) { return AsCoapMessage(aMessage).GetM… in otCoapMessageGetMessageId()
151 uint8_t otCoapMessageGetTokenLength(const otMessage *aMessage) { return AsCoapMessage(aMessage).Get… in otCoapMessageGetTokenLength()
153 const uint8_t *otCoapMessageGetToken(const otMessage *aMessage) { return AsCoapMessage(aMessage).Ge… in otCoapMessageGetToken()
155 otError otCoapOptionIteratorInit(otCoapOptionIterator *aIterator, const otMessage *aMessage) in otCoapOptionIteratorInit()
204 otMessage *aMessage, in otCoapSendRequestBlockWiseWithParameters()
232 otMessage *aMessage, in otCoapSendRequestWithParameters()
292 otMessage *aMessage, in otCoapSendResponseBlockWiseWithParameters()
311 otMessage *aMessage, in otCoapSendResponseWithParameters()