Lines Matching refs:otMessage
40 void otMessageFree(otMessage *aMessage) { AsCoreType(aMessage).Free(); } in otMessageFree()
42 uint16_t otMessageGetLength(const otMessage *aMessage) { return AsCoreType(aMessage).GetLength(); } in otMessageGetLength()
44 otError otMessageSetLength(otMessage *aMessage, uint16_t aLength) { return AsCoreType(aMessage).Set… in otMessageSetLength()
46 uint16_t otMessageGetOffset(const otMessage *aMessage) { return AsCoreType(aMessage).GetOffset(); } in otMessageGetOffset()
48 void otMessageSetOffset(otMessage *aMessage, uint16_t aOffset) { AsCoreType(aMessage).SetOffset(aOf… in otMessageSetOffset()
50 bool otMessageIsLinkSecurityEnabled(const otMessage *aMessage) { return AsCoreType(aMessage).IsLink… in otMessageIsLinkSecurityEnabled()
52 bool otMessageIsLoopbackToHostAllowed(const otMessage *aMessage) in otMessageIsLoopbackToHostAllowed()
57 void otMessageSetLoopbackToHostAllowed(otMessage *aMessage, bool aAllowLoopbackToHost) in otMessageSetLoopbackToHostAllowed()
62 bool otMessageIsMulticastLoopEnabled(otMessage *aMessage) { return AsCoreType(aMessage).GetMulticas… in otMessageIsMulticastLoopEnabled()
64 void otMessageSetMulticastLoopEnabled(otMessage *aMessage, bool aEnabled) in otMessageSetMulticastLoopEnabled()
69 otMessageOrigin otMessageGetOrigin(const otMessage *aMessage) { return MapEnum(AsCoreType(aMessage)… in otMessageGetOrigin()
71 void otMessageSetOrigin(otMessage *aMessage, otMessageOrigin aOrigin) in otMessageSetOrigin()
76 void otMessageSetDirectTransmission(otMessage *aMessage, bool aEnabled) in otMessageSetDirectTransmission()
88 int8_t otMessageGetRss(const otMessage *aMessage) { return AsCoreType(aMessage).GetAverageRss(); } in otMessageGetRss()
90 otError otMessageGetThreadLinkInfo(const otMessage *aMessage, otThreadLinkInfo *aLinkInfo) in otMessageGetThreadLinkInfo()
95 otError otMessageAppend(otMessage *aMessage, const void *aBuf, uint16_t aLength) in otMessageAppend()
102 uint16_t otMessageRead(const otMessage *aMessage, uint16_t aOffset, void *aBuf, uint16_t aLength) in otMessageRead()
109 int otMessageWrite(otMessage *aMessage, uint16_t aOffset, const void *aBuf, uint16_t aLength) in otMessageWrite()
125 void otMessageQueueEnqueue(otMessageQueue *aQueue, otMessage *aMessage) in otMessageQueueEnqueue()
130 void otMessageQueueEnqueueAtHead(otMessageQueue *aQueue, otMessage *aMessage) in otMessageQueueEnqueueAtHead()
135 void otMessageQueueDequeue(otMessageQueue *aQueue, otMessage *aMessage) in otMessageQueueDequeue()
140 otMessage *otMessageQueueGetHead(otMessageQueue *aQueue) { return AsCoreType(aQueue).GetHead(); } in otMessageQueueGetHead()
142 otMessage *otMessageQueueGetNext(otMessageQueue *aQueue, const otMessage *aMessage) in otMessageQueueGetNext()