Lines Matching refs:mkdtemp
29 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), common.mustCall(handler));
33 fs.mkdtemp(path.join(tmpdir.path, 'bar.'), {}, common.mustCall(handler));
35 const warningMsg = 'mkdtemp() templates ending with X are not portable. ' +
38 fs.mkdtemp(path.join(tmpdir.path, 'bar.X'), common.mustCall(handler));
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));
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));
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));