Lines Matching refs:src
975 const src = new PassThrough({ autoDestroy: false });
977 pipeline(src, dst, common.mustCall(() => {
978 assert.strictEqual(src.destroyed, false);
981 src.end();
1027 const src = new PassThrough();
1029 pipeline(src, dst, common.mustSucceed(() => {
1032 src.end();
1036 const src = new PassThrough();
1039 pipeline(src, dst, common.mustSucceed(() => {
1042 src.end();
1094 // of src. This is in the case where e.g. the Duplex input
1098 const src = new PassThrough();
1099 assert.strictEqual(src.writable, true);
1101 pipeline(src, dst, common.mustCall((err) => {
1102 assert.strictEqual(src.writable, true);
1103 assert.strictEqual(src.destroyed, false);
1105 src.push(null);
1109 const src = new PassThrough();
1111 src,
1121 src.push('asd');
1137 const src = new Readable({
1148 src.on('close', () => {
1151 src.push(null);
1152 pipeline(src, dst, common.mustCall((err) => {
1159 const src = new Readable({
1166 src.on('close', common.mustCall(() => {
1169 src.push(null);
1170 pipeline(src, dst, common.mustCall((err) => {