Home
last modified time | relevance | path

Searched refs:aMore (Results 1 – 9 of 9) sorted by relevance

/openthread-latest/src/cli/
Dcli_coap_secure.hpp117 bool aMore,
122 bool aMore,
128 bool *aMore);
129 … BlockwiseTransmitHook(uint8_t *aBlock, uint32_t aPosition, uint16_t *aBlockLength, bool *aMore);
Dcli_coap.hpp123 bool aMore,
128 bool aMore,
134 bool *aMore);
135 … BlockwiseTransmitHook(uint8_t *aBlock, uint32_t aPosition, uint16_t *aBlockLength, bool *aMore);
Dcli_coap_secure.cpp991 bool aMore, in BlockwiseReceiveHook() argument
994 …n static_cast<CoapSecure *>(aContext)->BlockwiseReceiveHook(aBlock, aPosition, aBlockLength, aMore, in BlockwiseReceiveHook()
1001 bool aMore, in BlockwiseReceiveHook() argument
1004 OT_UNUSED_VARIABLE(aMore); in BlockwiseReceiveHook()
1021 bool *aMore) in BlockwiseTransmitHook() argument
1023 …static_cast<CoapSecure *>(aContext)->BlockwiseTransmitHook(aBlock, aPosition, aBlockLength, aMore); in BlockwiseTransmitHook()
1026 …re::BlockwiseTransmitHook(uint8_t *aBlock, uint32_t aPosition, uint16_t *aBlockLength, bool *aMore) in BlockwiseTransmitHook() argument
1044 *aMore = false; in BlockwiseTransmitHook()
1048 *aMore = true; in BlockwiseTransmitHook()
Dcli_coap.cpp1114 bool aMore, in BlockwiseReceiveHook() argument
1117 …cast<Coap *>(aContext)->BlockwiseReceiveHook(aBlock, aPosition, aBlockLength, aMore, aTotalLength); in BlockwiseReceiveHook()
1123 bool aMore, in BlockwiseReceiveHook() argument
1126 OT_UNUSED_VARIABLE(aMore); in BlockwiseReceiveHook()
1143 bool *aMore) in BlockwiseTransmitHook() argument
1145 …eturn static_cast<Coap *>(aContext)->BlockwiseTransmitHook(aBlock, aPosition, aBlockLength, aMore); in BlockwiseTransmitHook()
1148 …ap::BlockwiseTransmitHook(uint8_t *aBlock, uint32_t aPosition, uint16_t *aBlockLength, bool *aMore) in BlockwiseTransmitHook() argument
1166 *aMore = false; in BlockwiseTransmitHook()
1170 *aMore = true; in BlockwiseTransmitHook()
/openthread-latest/include/openthread/
Dcoap.h373 bool aMore,
399 bool *aMore);
619 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock…
633 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock…
/openthread-latest/src/core/api/
Dcoap_api.cpp108 otError otCoapMessageAppendBlock2Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock2Option() argument
110 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType2, aNum, aMore, aSize); in otCoapMessageAppendBlock2Option()
113 otError otCoapMessageAppendBlock1Option(otMessage *aMessage, uint32_t aNum, bool aMore, otCoapBlock… in otCoapMessageAppendBlock1Option() argument
115 … return AsCoapMessage(aMessage).AppendBlockOption(Coap::Message::kBlockType1, aNum, aMore, aSize); in otCoapMessageAppendBlock1Option()
/openthread-latest/src/core/coap/
Dcoap.hpp210 bool aMore, in HandleBlockReceive() argument
213 …ceiveHook(otCoapBlockwiseResource::mContext, aBlock, aPosition, aBlockLength, aMore, aTotalLength); in HandleBlockReceive()
216 …HandleBlockTransmit(uint8_t *aBlock, uint32_t aPosition, uint16_t *aBlockLength, bool *aMore) const in HandleBlockTransmit()
218 … return mTransmitHook(otCoapBlockwiseResource::mContext, aBlock, aPosition, aBlockLength, aMore); in HandleBlockTransmit()
Dcoap_message.cpp288 Error Message::AppendBlockOption(Message::BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSz… in AppendBlockOption() argument
297 encoded |= static_cast<uint32_t>(aMore << kBlockMOffset); in AppendBlockOption()
Dcoap_message.hpp472 Error AppendBlockOption(BlockType aType, uint32_t aNum, bool aMore, otCoapBlockSzx aSize);