Lines Matching defs:padding
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.
158 // The padding strategy sets the mechanism by which we determine how much
159 // additional frame padding to apply to DATA and HEADERS frames. Currently
789 Debug(this, "using frame size padding: %d", pad);
794 // of padding allowed for the current frame.
797 Debug(this, "using max frame size padding: %d", maxPayloadLen);
1242 // Called by nghttp2 when it needs to determine how much padding to use in
1249 ssize_t padding = frame->hd.length;
1256 padding = session->OnMaxFrameSizePadding(padding, maxPayloadLen);
1259 padding = session->OnDWordAlignedPadding(padding, maxPayloadLen);
1262 return padding;
1828 // Send the frame header + a byte that indicates padding length.
1861 // Send padding if that was requested.