Lines Matching defs:errors
85 // we ignore preverify_ok errors here and let the handshake continue.
100 // Forcibly clear OpenSSL's error stack on return. This stops stale errors
108 // Pop errors from OpenSSL's error stack that were added
375 node::errors::TryCatchScope try_catch(env);
398 CryptoErrorStore* errors() { return &errors_; }
408 tracker->TrackField("errors", errors_);
504 CryptoErrorStore* errors = CryptoJob<DeriveBitsTraits>::errors();
505 errors->Capture();
506 if (errors->Empty())
507 errors->Insert(NodeCryptoError::DERIVING_BITS_FAILED);
517 CryptoErrorStore* errors = CryptoJob<DeriveBitsTraits>::errors();
519 CHECK(errors->Empty());
528 if (errors->Empty())
529 errors->Capture();
530 CHECK(!errors->Empty());
532 return v8::Just(errors->ToException(env).ToLocal(err));
600 EnginePointer LoadEngineById(const char* id, CryptoErrorStore* errors);
605 CryptoErrorStore* errors = nullptr);