Home
last modified time | relevance | path

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

/openthread-3.7.0/src/cli/
Dcli_coap.cpp385 otCoapTxParameters *txParameters; in Process() local
389 txParameters = &mRequestTxParameters; in Process()
394 txParameters = &mResponseTxParameters; in Process()
410 SuccessOrExit(error = aArgs[1].ParseAsUint32(txParameters->mAckTimeout)); in Process()
411 SuccessOrExit(error = aArgs[2].ParseAsUint8(txParameters->mAckRandomFactorNumerator)); in Process()
412 SuccessOrExit(error = aArgs[3].ParseAsUint8(txParameters->mAckRandomFactorDenominator)); in Process()
413 SuccessOrExit(error = aArgs[4].ParseAsUint8(txParameters->mMaxRetransmit)); in Process()
415 … VerifyOrExit(txParameters->mAckRandomFactorNumerator > txParameters->mAckRandomFactorDenominator, in Process()
430 …CK_TIMEOUT=%lu ms, ACK_RANDOM_FACTOR=%u/%u, MAX_RETRANSMIT=%u", ToUlong(txParameters->mAckTimeout), in Process()
431txParameters->mAckRandomFactorNumerator, txParameters->mAckRandomFactorDenominator, in Process()
[all …]
/openthread-3.7.0/src/core/api/
Dcoap_api.cpp212 const Coap::TxParameters &txParameters = Coap::TxParameters::From(aTxParameters); in otCoapSendRequestBlockWiseWithParameters() local
218 VerifyOrExit(txParameters.IsValid(), error = kErrorInvalidArgs); in otCoapSendRequestBlockWiseWithParameters()
222txParameters, aHandler, aContext, aTransmitHook, in otCoapSendRequestBlockWiseWithParameters()
239 const Coap::TxParameters &txParameters = Coap::TxParameters::From(aTxParameters); in otCoapSendRequestWithParameters() local
245 VerifyOrExit(txParameters.IsValid(), error = kErrorInvalidArgs); in otCoapSendRequestWithParameters()
249txParameters, aHandler, aContext); in otCoapSendRequestWithParameters()