Lines Matching defs:callback
171 // On servers, we pause the handshake until callback of 'newSession', which
172 // calls NewSessionDoneCb(). On clients, there is no callback to wait for.
239 // Implies the callback didn't return, because some exception was thrown
240 // during processing, e.g. if callback returned an invalid ALPN value.
247 // If you set an ALPN callback, but you return undefined for an ALPN
256 // The callback returns an offset into the given buffer, for the selected
418 Debug(this, "New session callback done");
561 Local<Value> callback;
564 .ToLocal(&callback) && callback->IsFunction()) {
566 c->MakeCallback(callback.As<Function>(), arraysize(argv), argv);
576 Local<Value> callback;
581 .ToLocal(&callback) && callback->IsFunction()) {
582 c->MakeCallback(callback.As<Function>(), 0, nullptr);
602 // Wait for `newSession` callback to be invoked