Lines Matching defs:callback
62 // two sets of callback functions, one that is used if a padding callback
63 // is set, and other that does not include the padding callback.
240 Local<Function> callback,
245 callback_.Reset(env()->isolate(), callback);
249 Local<Function> Http2Settings::callback() const {
254 tracker->TrackField("callback", callback_);
335 MakeCallback(callback(), arraysize(argv), argv);
419 // Sets the various callback functions that nghttp2 will use to notify us
706 // If we are writing we will get to make the callback in OnStreamAfterWrite.
708 Debug(this, "make done session callback");
803 // various callback functions. Each of these will typically result in a call
885 // callback to determine if a new stream is being created or if we are simply
1058 // If nghttp2 is unable to send a queued up frame, it will call this callback
1122 // Intentionally ignore the callback if the stream does not exist or has
1130 // ever passed on to the javascript side. If that happens, the callback
1145 // ignore these. If this callback was not provided, nghttp2 would handle
1813 // This callback is called from nghttp2 when it wants to send DATA frames for a
1815 // in the Http2Stream::Provider::Stream::OnRead callback.
2383 // nghttp2_stream. The WriteWrap's Done callback will be invoked once the
2778 // callback to the triggered.
3020 bool Http2Session::AddPing(const uint8_t* payload, Local<Function> callback) {
3029 MakeDetachedBaseObject<Http2Ping>(this, obj, callback);
3040 // the callback will be invoked and a notification sent out to JS land. The
3059 bool Http2Session::AddSettings(Local<Function> callback) {
3068 MakeDetachedBaseObject<Http2Settings>(this, obj, callback, 0);
3086 Local<Function> callback)
3090 callback_.Reset(env()->isolate(), callback);
3094 tracker->TrackField("callback", callback_);
3097 Local<Function> Http2Ping::callback() const {
3133 MakeCallback(callback(), arraysize(argv), argv);