Lines Matching refs:tmpdir
8 const tmpdir = require('../common/tmpdir');
9 tmpdir.refresh();
19 const tmpFolder = fs.mkdtempSync(path.join(tmpdir.path, 'foo.'));
24 const utf8 = fs.mkdtempSync(path.join(tmpdir.path, '\u0222abc.'));
29 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), common.mustCall(handler));
33 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), {}, common.mustCall(handler));
38 fs.mkdtemp(path.join(tmpdir.path, 'bar.X'), common.mustCall(handler));
43 const tmpFolder = fs.mkdtempSync(tmpdir.fileURL('foo.'));
48 const utf8 = fs.mkdtempSync(tmpdir.fileURL('\u0222abc.'));
53 fs.mkdtemp(tmpdir.fileURL('bar.'), common.mustCall(handler));
57 fs.mkdtemp(tmpdir.fileURL('bar.'), {}, common.mustCall(handler));
60 fs.mkdtemp(tmpdir.fileURL('bar.X'), common.mustCall(handler));
65 const tmpFolder = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, 'foo.')));
70 const utf8 = fs.mkdtempSync(Buffer.from(path.join(tmpdir.path, '\u0222abc.')));
75 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), common.mustCall(handler));
79 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.')), {}, common.mustCall(handler));
82 fs.mkdtemp(Buffer.from(path.join(tmpdir.path, 'bar.X')), common.mustCall(handler));
89 const tmpFolder = fs.mkdtempSync(encoder.encode(path.join(tmpdir.path, 'foo.')));
94 const utf8 = fs.mkdtempSync(encoder.encode(path.join(tmpdir.path, '\u0222abc.')));
99 fs.mkdtemp(encoder.encode(path.join(tmpdir.path, 'bar.')), common.mustCall(handler));
103 fs.mkdtemp(encoder.encode(path.join(tmpdir.path, 'bar.')), {}, common.mustCall(handler));
106 fs.mkdtemp(encoder.encode(path.join(tmpdir.path, 'bar.X')), common.mustCall(handler));