/openthread-latest/src/core/crypto/ |
D | crypto_platform.cpp | 94 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesInit() 110 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesSetKey() 114 error = kErrorFailed); in otPlatCryptoAesSetKey() 126 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesEncrypt() 129 …(mbedtls_aes_crypt_ecb(context, MBEDTLS_AES_ENCRYPT, aInput, aOutput) == 0), error = kErrorFailed); in otPlatCryptoAesEncrypt() 141 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesFree() 160 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Init() 165 VerifyOrExit((mbedtls_md_setup(context, mdInfo, 1) == 0), error = kErrorFailed); in otPlatCryptoHmacSha256Init() 177 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Deinit() 193 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Start() [all …]
|
D | mbedtls.cpp | 147 error = kErrorFailed; in MapError() 164 error = kErrorFailed; in MapError()
|
/openthread-latest/src/core/net/ |
D | srp_server.cpp | 813 VerifyOrExit(aMetadata.mDnsHeader.GetPrerequisiteRecordCount() == 0, error = kErrorFailed); in ProcessDnsUpdate() 915 VerifyOrExit(IsValidDeleteAllRecord(record), error = kErrorFailed); in ProcessHostDescriptionInstruction() 931 VerifyOrExit(record.GetClass() == aMetadata.mDnsZone.GetClass(), error = kErrorFailed); in ProcessHostDescriptionInstruction() 948 VerifyOrExit(record.GetClass() == aMetadata.mDnsZone.GetClass(), error = kErrorFailed); in ProcessHostDescriptionInstruction() 971 VerifyOrExit(aHost.GetFullName() != nullptr, error = kErrorFailed); in ProcessHostDescriptionInstruction() 972 VerifyOrExit(aHost.mParsedKey, error = kErrorFailed); in ProcessHostDescriptionInstruction() 1040 error = kErrorFailed); in ProcessServiceDiscoveryInstructions() 1054 VerifyOrExit(!service->HasSubTypeServiceName(serviceName), error = kErrorFailed); in ProcessServiceDiscoveryInstructions() 1072 VerifyOrExit(service->mServiceName.IsNull(), error = kErrorFailed); in ProcessServiceDiscoveryInstructions() 1121 VerifyOrExit(IsValidDeleteAllRecord(record), error = kErrorFailed); in ProcessServiceDescriptionInstructions() [all …]
|
D | sntp_client.cpp | 274 VerifyOrExit(responseHeader.GetMode() == Header::kModeServer, error = kErrorFailed); in HandleUdpReceive() 291 error = kErrorFailed); in HandleUdpReceive()
|
D | dns_types.cpp | 48 Error error = kErrorFailed; in ResponseCodeToError() 64 error = kErrorFailed; in ResponseCodeToError()
|
D | tcp6.cpp | 264 VerifyOrExit(cbuf_used_space(&tp.recvbuf) >= aNumBytes, error = kErrorFailed); in CommitReceive() 754 Error error = kErrorFailed; in BsdErrorToOtError()
|
D | dns_client.cpp | 1149 error = kErrorFailed); in SendQuery() 1567 Error error = kErrorFailed; in ReplaceWithIp4Query() 1681 Error error = kErrorFailed; in ReplaceWithSeparateSrvTxtQueries()
|
/openthread-latest/tests/nexus/platform/ |
D | nexus_misc.cpp | 92 VerifyOrExit(file != nullptr, error = kErrorFailed); in otPlatEntropyGet() 98 error = kErrorFailed; in otPlatEntropyGet()
|
D | nexus_radio.cpp | 87 VerifyOrExit(radio.mState == Radio::kStateDisabled, error = kErrorFailed); in otPlatRadioEnable()
|
/openthread-latest/src/core/utils/ |
D | verhoeff_checksum.cpp | 111 VerifyOrExit(code == 0, error = kErrorFailed); in Validate()
|
D | slaac_address.cpp | 422 Error error = kErrorFailed; in GenerateIid()
|
D | mesh_diag.cpp | 266 Error error = kErrorFailed; in ProcessMessage()
|
/openthread-latest/src/core/common/ |
D | error.hpp | 55 constexpr Error kErrorFailed = OT_ERROR_FAILED; variable
|
/openthread-latest/src/core/api/ |
D | thread_api.cpp | 362 VerifyOrExit(*aParentRssi != Radio::kInvalidRssi, error = kErrorFailed); in otThreadGetParentAverageRssi() 376 VerifyOrExit(*aLastRssi != Radio::kInvalidRssi, error = kErrorFailed); in otThreadGetParentLastRssi()
|
/openthread-latest/src/core/meshcop/ |
D | tcat_agent.cpp | 77 VerifyOrExit(mVendorInfo != nullptr, error = kErrorFailed); in Start() 729 VerifyOrExit(StringLength(mVendorInfo->mPskdString, kMaxPskdLength) != 0, error = kErrorFailed); in HandleRequestPskdHash()
|
/openthread-latest/src/core/thread/ |
D | indirect_sender.cpp | 509 txError = kErrorFailed; in HandleSentFrameToChild()
|
D | mesh_forwarder_ftd.cpp | 853 Error error = kErrorFailed; in LogMeshFragmentHeader()
|
D | lowpan.cpp | 456 VerifyOrExit(len <= kExtHdrMaxLength, error = kErrorFailed); in CompressExtensionHeader()
|
D | network_diagnostic.cpp | 950 VerifyOrExit(aMessage->GetCode() == Coap::kCodeChanged, aResult = kErrorFailed); in HandleGetResponse()
|
D | mesh_forwarder.cpp | 1285 txError = kErrorFailed; in UpdateSendMessage()
|
/openthread-latest/src/core/radio/ |
D | ble_secure.cpp | 80 VerifyOrExit(advertisementData != nullptr, error = kErrorFailed); in Start()
|
/openthread-latest/tests/unit/ |
D | test_checksum.cpp | 507 VerifyOrQuit(Utils::VerhoeffChecksum::Validate(string) == kErrorFailed); in TestVerhoeffChecksum()
|
D | test_network_data.cpp | 522 Error error = kErrorFailed; in ValidateServiceData()
|
D | test_srp_server.cpp | 264 otSrpServerHandleServiceUpdateResult(sInstance, aId, kErrorFailed); in HandleSrpServerUpdate()
|
/openthread-latest/src/core/coap/ |
D | coap.cpp | 805 VerifyOrExit((response = NewMessage()) != nullptr, error = kErrorFailed); in ProcessBlock1Request()
|