Lines Matching refs:v8
11 #include "v8.h"
20 const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
27 BIOPointer LoadBIO(Environment* env, v8::Local<v8::Value> v);
38 static bool HasInstance(Environment* env, const v8::Local<v8::Value>& value);
39 static v8::Local<v8::FunctionTemplate> GetConstructorTemplate(
41 static void Initialize(Environment* env, v8::Local<v8::Object> target);
61 v8::Maybe<bool> AddCert(Environment* env, BIOPointer&& bio);
62 v8::Maybe<bool> SetCRL(Environment* env, const BIOPointer& bio);
63 v8::Maybe<bool> UseKey(Environment* env, std::shared_ptr<KeyObjectData> key);
86 static void New(const v8::FunctionCallbackInfo<v8::Value>& args);
87 static void Init(const v8::FunctionCallbackInfo<v8::Value>& args);
88 static void SetKey(const v8::FunctionCallbackInfo<v8::Value>& args);
90 static void SetEngineKey(const v8::FunctionCallbackInfo<v8::Value>& args);
92 static void SetCert(const v8::FunctionCallbackInfo<v8::Value>& args);
93 static void AddCACert(const v8::FunctionCallbackInfo<v8::Value>& args);
94 static void AddCRL(const v8::FunctionCallbackInfo<v8::Value>& args);
95 static void AddRootCerts(const v8::FunctionCallbackInfo<v8::Value>& args);
96 static void SetCipherSuites(const v8::FunctionCallbackInfo<v8::Value>& args);
97 static void SetCiphers(const v8::FunctionCallbackInfo<v8::Value>& args);
98 static void SetSigalgs(const v8::FunctionCallbackInfo<v8::Value>& args);
99 static void SetECDHCurve(const v8::FunctionCallbackInfo<v8::Value>& args);
100 static void SetDHParam(const v8::FunctionCallbackInfo<v8::Value>& args);
101 static void SetOptions(const v8::FunctionCallbackInfo<v8::Value>& args);
103 const v8::FunctionCallbackInfo<v8::Value>& args);
105 const v8::FunctionCallbackInfo<v8::Value>& args);
106 static void SetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args);
107 static void SetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args);
108 static void GetMinProto(const v8::FunctionCallbackInfo<v8::Value>& args);
109 static void GetMaxProto(const v8::FunctionCallbackInfo<v8::Value>& args);
110 static void Close(const v8::FunctionCallbackInfo<v8::Value>& args);
111 static void LoadPKCS12(const v8::FunctionCallbackInfo<v8::Value>& args);
114 const v8::FunctionCallbackInfo<v8::Value>& args);
116 static void GetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args);
117 static void SetTicketKeys(const v8::FunctionCallbackInfo<v8::Value>& args);
119 const v8::FunctionCallbackInfo<v8::Value>& args);
120 static void CtxGetter(const v8::FunctionCallbackInfo<v8::Value>& info);
123 static void GetCertificate(const v8::FunctionCallbackInfo<v8::Value>& args);
139 SecureContext(Environment* env, v8::Local<v8::Object> wrap);