Lines Matching refs:TLSWrap
72 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
80 TLSWrap* w = static_cast<TLSWrap*>(arg);
115 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
132 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
182 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
226 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
286 TLSWrap* w = static_cast<TLSWrap*>(SSL_get_app_data(s));
356 TLSWrap::TLSWrap(Environment* env,
383 Debug(this, "Created new TLSWrap");
386 TLSWrap::~TLSWrap() {
390 MaybeLocal<ArrayBufferView> TLSWrap::ocsp_response() const {
396 void TLSWrap::ClearOcspResponse() {
400 SSL_SESSION* TLSWrap::ReleaseSession() {
404 void TLSWrap::InvokeQueued(int status, const char* error_str) {
417 void TLSWrap::NewSessionDoneCb() {
422 void TLSWrap::InitSSL() {
475 void TLSWrap::Wrap(const FunctionCallbackInfo<Value>& args) {
501 TLSWrap* res = new TLSWrap(
507 void TLSWrap::Receive(const FunctionCallbackInfo<Value>& args) {
508 TLSWrap* wrap;
529 void TLSWrap::Start(const FunctionCallbackInfo<Value>& args) {
530 TLSWrap* wrap;
545 void TLSWrap::SSLInfoCallback(const SSL* ssl_, int where, int ret) {
551 TLSWrap* c = static_cast<TLSWrap*>(SSL_get_app_data(ssl_));
587 void TLSWrap::EncOut() {
644 BaseObjectPtr<TLSWrap> strong_ref{this};
676 BaseObjectPtr<TLSWrap> strong_ref{this};
683 void TLSWrap::OnStreamAfterWrite(WriteWrap* req_wrap, int status) {
732 void TLSWrap::ClearOut() {
852 void TLSWrap::ClearIn() {
902 std::string TLSWrap::diagnostic_name() const {
903 std::string name = "TLSWrap ";
909 AsyncWrap* TLSWrap::GetAsyncWrap() {
913 bool TLSWrap::IsIPCPipe() {
917 int TLSWrap::GetFD() {
921 bool TLSWrap::IsAlive() {
927 bool TLSWrap::IsClosing() {
931 int TLSWrap::ReadStart() {
938 int TLSWrap::ReadStop() {
943 const char* TLSWrap::Error() const {
947 void TLSWrap::ClearError() {
952 // TODO(@sam-github) Should there be a TLSWrap::DoTryWrite()?
953 int TLSWrap::DoWrite(WriteWrap* w,
998 BaseObjectPtr<TLSWrap> strong_ref{this};
1086 uv_buf_t TLSWrap::OnStreamAlloc(size_t suggested_size) {
1094 void TLSWrap::OnStreamRead(ssize_t nread, const uv_buf_t& buf) {
1115 // this TLSWrap as a stream listener, so we should not receive OnStreamRead()
1140 ShutdownWrap* TLSWrap::CreateShutdownWrap(Local<Object> req_wrap_object) {
1144 int TLSWrap::DoShutdown(ShutdownWrap* req_wrap) {
1156 void TLSWrap::SetVerifyMode(const FunctionCallbackInfo<Value>& args) {
1157 TLSWrap* wrap;
1188 void TLSWrap::EnableSessionCallbacks(const FunctionCallbackInfo<Value>& args) {
1189 TLSWrap* wrap;
1204 void TLSWrap::EnableKeylogCallback(const FunctionCallbackInfo<Value>& args) {
1205 TLSWrap* wrap;
1221 void TLSWrap::EnableTrace(const FunctionCallbackInfo<Value>& args) {
1222 TLSWrap* wrap;
1244 void TLSWrap::DestroySSL(const FunctionCallbackInfo<Value>& args) {
1245 TLSWrap* wrap;
1251 void TLSWrap::Destroy() {
1273 void TLSWrap::EnableCertCb(const FunctionCallbackInfo<Value>& args) {
1274 TLSWrap* wrap;
1279 void TLSWrap::WaitForCertCb(CertCb cb, void* arg) {
1284 void TLSWrap::OnClientHelloParseEnd(void* arg) {
1285 TLSWrap* c = static_cast<TLSWrap*>(arg);
1290 void TLSWrap::EnableALPNCb(const FunctionCallbackInfo<Value>& args) {
1291 TLSWrap* wrap;
1300 void TLSWrap::GetServername(const FunctionCallbackInfo<Value>& args) {
1303 TLSWrap* wrap;
1316 void TLSWrap::SetServername(const FunctionCallbackInfo<Value>& args) {
1319 TLSWrap* wrap;
1333 int TLSWrap::SelectSNIContextCallback(SSL* s, int* ad, void* arg) {
1334 TLSWrap* p = static_cast<TLSWrap*>(SSL_get_app_data(s));
1367 int TLSWrap::SetCACerts(SecureContext* sc) {
1383 void TLSWrap::SetPskIdentityHint(const FunctionCallbackInfo<Value>& args) {
1384 TLSWrap* p;
1400 void TLSWrap::EnablePskCallback(const FunctionCallbackInfo<Value>& args) {
1401 TLSWrap* wrap;
1409 unsigned int TLSWrap::PskServerCallback(
1414 TLSWrap* p = static_cast<TLSWrap*>(SSL_get_app_data(s));
1448 unsigned int TLSWrap::PskClientCallback(
1455 TLSWrap* p = static_cast<TLSWrap*>(SSL_get_app_data(s));
1510 void TLSWrap::GetWriteQueueSize(const FunctionCallbackInfo<Value>& info) {
1511 TLSWrap* wrap;
1521 void TLSWrap::MemoryInfo(MemoryTracker* tracker) const {
1533 void TLSWrap::CertCbDone(const FunctionCallbackInfo<Value>& args) {
1535 TLSWrap* w;
1579 void TLSWrap::SetALPNProtocols(const FunctionCallbackInfo<Value>& args) {
1580 TLSWrap* w;
1598 void TLSWrap::GetPeerCertificate(const FunctionCallbackInfo<Value>& args) {
1599 TLSWrap* w;
1614 void TLSWrap::GetPeerX509Certificate(const FunctionCallbackInfo<Value>& args) {
1615 TLSWrap* w;
1628 void TLSWrap::GetCertificate(const FunctionCallbackInfo<Value>& args) {
1629 TLSWrap* w;
1638 void TLSWrap::GetX509Certificate(const FunctionCallbackInfo<Value>& args) {
1639 TLSWrap* w;
1647 void TLSWrap::GetFinished(const FunctionCallbackInfo<Value>& args) {
1650 TLSWrap* w;
1678 void TLSWrap::GetPeerFinished(const FunctionCallbackInfo<Value>& args) {
1681 TLSWrap* w;
1709 void TLSWrap::GetSession(const FunctionCallbackInfo<Value>& args) {
1712 TLSWrap* w;
1738 void TLSWrap::SetSession(const FunctionCallbackInfo<Value>& args) {
1741 TLSWrap* w;
1757 void TLSWrap::IsSessionReused(const FunctionCallbackInfo<Value>& args) {
1758 TLSWrap* w;
1764 void TLSWrap::VerifyError(const FunctionCallbackInfo<Value>& args) {
1766 TLSWrap* w;
1792 void TLSWrap::GetCipher(const FunctionCallbackInfo<Value>& args) {
1794 TLSWrap* w;
1800 void TLSWrap::LoadSession(const FunctionCallbackInfo<Value>& args) {
1801 TLSWrap* w;
1816 void TLSWrap::GetSharedSigalgs(const FunctionCallbackInfo<Value>& args) {
1818 TLSWrap* w;
1895 void TLSWrap::ExportKeyingMaterial(const FunctionCallbackInfo<Value>& args) {
1900 TLSWrap* w;
1938 void TLSWrap::EndParser(const FunctionCallbackInfo<Value>& args) {
1939 TLSWrap* w;
1944 void TLSWrap::Renegotiate(const FunctionCallbackInfo<Value>& args) {
1945 TLSWrap* w;
1952 void TLSWrap::GetTLSTicket(const FunctionCallbackInfo<Value>& args) {
1953 TLSWrap* w;
1972 void TLSWrap::NewSessionDone(const FunctionCallbackInfo<Value>& args) {
1973 TLSWrap* w;
1979 void TLSWrap::SetOCSPResponse(const FunctionCallbackInfo<Value>& args) {
1980 TLSWrap* w;
1992 void TLSWrap::RequestOCSP(const FunctionCallbackInfo<Value>& args) {
1993 TLSWrap* w;
1999 void TLSWrap::GetEphemeralKeyInfo(const FunctionCallbackInfo<Value>& args) {
2000 TLSWrap* w;
2017 void TLSWrap::GetProtocol(const FunctionCallbackInfo<Value>& args) {
2019 TLSWrap* w;
2025 void TLSWrap::GetALPNNegotiatedProto(const FunctionCallbackInfo<Value>& args) {
2027 TLSWrap* w;
2051 void TLSWrap::WritesIssuedByPrevListenerDone(
2053 TLSWrap* w;
2061 void TLSWrap::Cycle() {
2075 void TLSWrap::SetMaxSendFragment(const FunctionCallbackInfo<Value>& args) {
2078 TLSWrap* w;
2087 void TLSWrap::Initialize(
2095 SetMethod(context, target, "wrap", TLSWrap::Wrap);
2101 FIXED_ONE_BYTE_STRING(env->isolate(), "TLSWrap");
2184 void TLSWrap::RegisterExternalReferences(ExternalReferenceRegistry* registry) {
2185 registry->Register(TLSWrap::Wrap);
2239 NODE_BINDING_CONTEXT_AWARE_INTERNAL(tls_wrap, node::crypto::TLSWrap::Initialize)
2241 tls_wrap, node::crypto::TLSWrap::RegisterExternalReferences)