Searched refs:tmpFile (Results 1 – 6 of 6) sorted by relevance
/third_party/node/test/parallel/ |
D | test-stdout-to-file.js | 12 const tmpFile = path.join(tmpdir.path, 'stdout.txt'); constant 18 useBuffer ? scriptBuffer : scriptString}" ${size} > "${tmpFile}"`; 21 fs.unlinkSync(tmpFile); 24 console.log(`${size} chars to ${tmpFile}...`); 29 const stat = fs.statSync(tmpFile); 31 console.log(`${tmpFile} has ${stat.size} bytes`); 34 fs.unlinkSync(tmpFile);
|
D | test-stdin-from-file.js | 11 const tmpFile = join(tmpdir.path, 'stdin.txt'); constant 13 const cmd = `"${process.argv[0]}" "${stdoutScript}" < "${tmpFile}"`; 32 fs.writeFileSync(tmpFile, string); 35 fs.unlinkSync(tmpFile);
|
/third_party/vk-gl-cts/framework/qphelper/ |
D | qpCrashHandler.c | 541 int tmpFile = mkstemp(tmpFileName); in qpCrashHandler_writeCrashInfo() local 543 if (tmpFile == -1) in qpCrashHandler_writeCrashInfo() 558 backtrace_symbols_fd(symbols, symbolCount, tmpFile); in qpCrashHandler_writeCrashInfo() 560 if (lseek(tmpFile, 0, SEEK_SET) < 0) in qpCrashHandler_writeCrashInfo() 563 close(tmpFile); in qpCrashHandler_writeCrashInfo() 592 if (read(tmpFile, &c, 1) == 1) in qpCrashHandler_writeCrashInfo() 619 close(tmpFile); in qpCrashHandler_writeCrashInfo() 620 tmpFile = -1; in qpCrashHandler_writeCrashInfo() 626 if (tmpFile == -1) in qpCrashHandler_writeCrashInfo() 630 if (tmpFile != -1) in qpCrashHandler_writeCrashInfo() [all …]
|
/third_party/node/deps/npm/node_modules/fs-vacuum/test/ |
D | racy-entries.js | 11 var tmpFile = require('tmp').file variable 22 tmpFile({dir: dir}, function (err, path, fd) {
|
D | racy-entries-eexist.js | 12 var tmpFile = require('tmp').file variable 25 tmpFile({dir: dir}, function (err, path, fd) {
|
D | racy-entries-enotempty.js | 12 var tmpFile = require('tmp').file variable 25 tmpFile({dir: dir}, function (err, path, fd) {
|