Home
last modified time | relevance | path

Searched refs:aContext (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Dcrypto_psa.c107 static bool checkContext(otCryptoContext *aContext, size_t aMinSize) in checkContext() argument
110 return aContext != NULL && aContext->mContext != NULL && aContext->mContextSize >= aMinSize; in checkContext()
220 otError otPlatCryptoHmacSha256Init(otCryptoContext *aContext) in otPlatCryptoHmacSha256Init() argument
224 if (!checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Init()
228 operation = aContext->mContext; in otPlatCryptoHmacSha256Init()
234 otError otPlatCryptoHmacSha256Deinit(otCryptoContext *aContext) in otPlatCryptoHmacSha256Deinit() argument
238 if (!checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Deinit()
242 operation = aContext->mContext; in otPlatCryptoHmacSha256Deinit()
247 otError otPlatCryptoHmacSha256Start(otCryptoContext *aContext, const otCryptoKey *aKey) in otPlatCryptoHmacSha256Start() argument
252 if (aKey == NULL || !checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Start()
[all …]
Dspi.c19 void *aContext) in otPlatSpiSlaveEnable() argument
23 ARG_UNUSED(aContext); in otPlatSpiSlaveEnable()
Dhdlc_interface.hpp188 static void HandleHdlcFrame(void *aContext, otError aError);
Dhdlc_interface.cpp300 void HdlcInterface::HandleHdlcFrame(void *aContext, otError aError) in HandleHdlcFrame() argument
302 static_cast<HdlcInterface *>(aContext)->HandleHdlcFrame(aError); in HandleHdlcFrame()
Ddiag.c65 void *aContext) in otPlatDiagSetOutputCallback() argument
70 sDiagCallbackContext = aContext; in otPlatDiagSetOutputCallback()