Searched refs:statCheck (Results 1 – 12 of 12) sorted by relevance
/third_party/node/test/parallel/ |
D | test-http2-respond-file-error-dir.js | 24 statCheck: common.mustNotCall() property
|
D | test-http2-respond-file-304.js | 22 statCheck(stat, headers) { method
|
D | test-http2-respond-file-404.js | 30 statCheck: common.mustNotCall() property
|
D | test-http2-respond-file-range.js | 26 statCheck: common.mustCall((stat, headers) => { property
|
D | test-http2-respond-file-error-pipe-offset.js | 40 statCheck: common.mustNotCall() property
|
D | test-http2-respond-file-with-pipe.js | 30 statCheck: common.mustCall() property
|
D | test-http2-respond-file-errors.js | 14 statCheck: 'function' property
|
D | test-http2-respond-file.js | 26 statCheck(stat, headers) { method
|
D | test-http2-respond-file-fd-errors.js | 15 statCheck: 'function' property
|
D | test-http2-respond-file-fd-range.js | 40 statCheck: common.mustCall((stat, headers, options) => { property
|
/third_party/node/lib/internal/http2/ |
D | core.js | 2473 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/ |
D | http2.md | 1530 * `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 });
|