Lines Matching defs:arg
78 void* arg,
80 TLSWrap* w = static_cast<TLSWrap*>(arg);
181 int SSLCertCallback(SSL* s, void* arg) {
225 void* arg) {
285 int TLSExtStatusCallback(SSL* s, void* arg) {
292 Local<Value> arg;
293 if (GetSSLOCSPResponse(env, s, Null(env->isolate())).ToLocal(&arg))
294 w->MakeCallback(env->onocspresponse_string(), 1, &arg);
1229 content_type, const void* buf, size_t len, SSL* ssl, void* arg)
1237 SSL_trace(write_p, version, content_type, buf, len, ssl, arg);
1279 void TLSWrap::WaitForCertCb(CertCb cb, void* arg) {
1281 cert_cb_arg_ = arg;
1284 void TLSWrap::OnClientHelloParseEnd(void* arg) {
1285 TLSWrap* c = static_cast<TLSWrap*>(arg);
1333 int TLSWrap::SelectSNIContextCallback(SSL* s, int* ad, void* arg) {
1567 void* arg;
1570 arg = w->cert_cb_arg_;
1576 cb(arg);
1804 // TODO(@sam-github) check arg length and types in js, and CHECK in c++