Lines Matching defs:errors
57 // this callback, we ignore all preverify_ok errors and let the handshake
583 CryptoErrorStore errors;
584 errors.Capture();
585 if (!errors.ToException(env, exception_string).ToLocal(&exception) ||
594 EnginePointer LoadEngineById(const char* id, CryptoErrorStore* errors) {
609 if (!engine && errors != nullptr) {
610 errors->Capture();
611 if (errors->Empty()) {
612 errors->Insert(NodeCryptoError::ENGINE_NOT_FOUND, id);
619 bool SetEngine(const char* id, uint32_t flags, CryptoErrorStore* errors) {
621 EnginePointer engine = LoadEngineById(id, errors);
626 if (errors != nullptr)
627 errors->Capture();