Searched refs:aContext (Results 1 – 5 of 5) sorted by relevance
107 static bool checkContext(otCryptoContext *aContext, size_t aMinSize) in checkContext() argument110 return aContext != NULL && aContext->mContext != NULL && aContext->mContextSize >= aMinSize; in checkContext()220 otError otPlatCryptoHmacSha256Init(otCryptoContext *aContext) in otPlatCryptoHmacSha256Init() argument224 if (!checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Init()228 operation = aContext->mContext; in otPlatCryptoHmacSha256Init()234 otError otPlatCryptoHmacSha256Deinit(otCryptoContext *aContext) in otPlatCryptoHmacSha256Deinit() argument238 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() argument252 if (aKey == NULL || !checkContext(aContext, sizeof(psa_mac_operation_t))) { in otPlatCryptoHmacSha256Start()[all …]
19 void *aContext) in otPlatSpiSlaveEnable() argument23 ARG_UNUSED(aContext); in otPlatSpiSlaveEnable()
188 static void HandleHdlcFrame(void *aContext, otError aError);
300 void HdlcInterface::HandleHdlcFrame(void *aContext, otError aError) in HandleHdlcFrame() argument302 static_cast<HdlcInterface *>(aContext)->HandleHdlcFrame(aError); in HandleHdlcFrame()
65 void *aContext) in otPlatDiagSetOutputCallback() argument70 sDiagCallbackContext = aContext; in otPlatDiagSetOutputCallback()