Lines Matching defs:const

61   bool is_cert_cb_running() const { return cert_cb_running_; }
62 bool is_waiting_cert_cb() const { return cert_cb_ != nullptr; }
63 bool has_session_callbacks() const { return session_callbacks_; }
67 bool is_server() const { return kind_ == Kind::kServer; }
68 bool is_client() const { return kind_ == Kind::kClient; }
69 bool is_awaiting_new_session() const { return awaiting_new_session_; }
90 const char* Error() const override;
94 v8::MaybeLocal<v8::ArrayBufferView> ocsp_response() const;
102 void MemoryInfo(MemoryTracker* tracker) const override;
106 std::string diagnostic_name() const override;
131 StreamBase* underlying_stream() const {
144 static void SSLInfoCallback(const SSL* ssl_, int where, int ret);
158 void InvokeQueued(int status, const char* error_str = nullptr);
168 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override;
175 static void CertCbDone(const v8::FunctionCallbackInfo<v8::Value>& args);
176 static void DestroySSL(const v8::FunctionCallbackInfo<v8::Value>& args);
177 static void EnableCertCb(const v8::FunctionCallbackInfo<v8::Value>& args);
178 static void EnableALPNCb(const v8::FunctionCallbackInfo<v8::Value>& args);
180 const v8::FunctionCallbackInfo<v8::Value>& args);
182 const v8::FunctionCallbackInfo<v8::Value>& args);
183 static void EnableTrace(const v8::FunctionCallbackInfo<v8::Value>& args);
184 static void EndParser(const v8::FunctionCallbackInfo<v8::Value>& args);
186 const v8::FunctionCallbackInfo<v8::Value>& args);
188 const v8::FunctionCallbackInfo<v8::Value>& args);
189 static void GetCertificate(const v8::FunctionCallbackInfo<v8::Value>& args);
191 const v8::FunctionCallbackInfo<v8::Value>& args);
192 static void GetCipher(const v8::FunctionCallbackInfo<v8::Value>& args);
194 const v8::FunctionCallbackInfo<v8::Value>& args);
195 static void GetFinished(const v8::FunctionCallbackInfo<v8::Value>& args);
197 const v8::FunctionCallbackInfo<v8::Value>& args);
199 const v8::FunctionCallbackInfo<v8::Value>& args);
200 static void GetPeerFinished(const v8::FunctionCallbackInfo<v8::Value>& args);
201 static void GetProtocol(const v8::FunctionCallbackInfo<v8::Value>& args);
202 static void GetServername(const v8::FunctionCallbackInfo<v8::Value>& args);
203 static void GetSession(const v8::FunctionCallbackInfo<v8::Value>& args);
204 static void GetSharedSigalgs(const v8::FunctionCallbackInfo<v8::Value>& args);
205 static void GetTLSTicket(const v8::FunctionCallbackInfo<v8::Value>& args);
207 const v8::FunctionCallbackInfo<v8::Value>& info);
208 static void IsSessionReused(const v8::FunctionCallbackInfo<v8::Value>& args);
209 static void LoadSession(const v8::FunctionCallbackInfo<v8::Value>& args);
210 static void NewSessionDone(const v8::FunctionCallbackInfo<v8::Value>& args);
212 static void Receive(const v8::FunctionCallbackInfo<v8::Value>& args);
213 static void Renegotiate(const v8::FunctionCallbackInfo<v8::Value>& args);
214 static void RequestOCSP(const v8::FunctionCallbackInfo<v8::Value>& args);
215 static void SetALPNProtocols(const v8::FunctionCallbackInfo<v8::Value>& args);
216 static void SetOCSPResponse(const v8::FunctionCallbackInfo<v8::Value>& args);
217 static void SetServername(const v8::FunctionCallbackInfo<v8::Value>& args);
218 static void SetSession(const v8::FunctionCallbackInfo<v8::Value>& args);
219 static void SetVerifyMode(const v8::FunctionCallbackInfo<v8::Value>& args);
220 static void Start(const v8::FunctionCallbackInfo<v8::Value>& args);
221 static void VerifyError(const v8::FunctionCallbackInfo<v8::Value>& args);
222 static void Wrap(const v8::FunctionCallbackInfo<v8::Value>& args);
224 const v8::FunctionCallbackInfo<v8::Value>& args);
228 const v8::FunctionCallbackInfo<v8::Value>& args);
233 const v8::FunctionCallbackInfo<v8::Value>& args);
235 const v8::FunctionCallbackInfo<v8::Value>& args);
237 const char* identity,
241 const char* hint,
248 Environment* const env_;