Home
last modified time | relevance | path

Searched refs:statCheck (Results 1 – 12 of 12) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-respond-file-error-dir.js24 statCheck: common.mustNotCall() property
Dtest-http2-respond-file-304.js22 statCheck(stat, headers) { method
Dtest-http2-respond-file-404.js30 statCheck: common.mustNotCall() property
Dtest-http2-respond-file-range.js26 statCheck: common.mustCall((stat, headers) => { property
Dtest-http2-respond-file-error-pipe-offset.js40 statCheck: common.mustNotCall() property
Dtest-http2-respond-file-with-pipe.js30 statCheck: common.mustCall() property
Dtest-http2-respond-file-errors.js14 statCheck: 'function' property
Dtest-http2-respond-file.js26 statCheck(stat, headers) { method
Dtest-http2-respond-file-fd-errors.js15 statCheck: 'function' property
Dtest-http2-respond-file-fd-range.js40 statCheck: common.mustCall((stat, headers, options) => { property
/third_party/node/lib/internal/http2/
Dcore.js2473 if ((typeof options.statCheck === 'function' &&
2474 options.statCheck.call(this, stat, headers, statOptions) === false) ||
2532 if ((typeof options.statCheck === 'function' &&
2533 options.statCheck.call(this, stat, headers) === false) ||
2743 if (options.statCheck !== undefined &&
2744 typeof options.statCheck !== 'function') {
2745 throw new ERR_INVALID_OPT_VALUE('statCheck', options.statCheck);
2773 if (options.statCheck !== undefined) {
2808 if (options.statCheck !== undefined &&
2809 typeof options.statCheck !== 'function') {
[all …]
/third_party/node/doc/api/
Dhttp2.md1530 * `statCheck` {Function}
1563 The optional `options.statCheck` function may be specified to give user code
1565 of the given fd. If the `statCheck` function is provided, the
1628 * `statCheck` {Function}
1642 The optional `options.statCheck` function may be specified to give user code
1657 function statCheck(stat, headers) {
1679 { statCheck, onError });
1683 The `options.statCheck` function may also be used to cancel the send operation
1692 function statCheck(stat, headers) {
1699 { statCheck });