Home
last modified time | relevance | path

Searched refs:isUserFd (Results 1 – 2 of 2) sorted by relevance

/third_party/node/lib/
Dfs.js325 context.isUserFd = isFd(path); // File descriptor ownership
330 if (context.isUserFd) {
354 function tryStatSync(fd, isUserFd) { argument
357 if (ctx.errno !== undefined && !isUserFd) {
364 function tryCreateBuffer(size, fd, isUserFd) { argument
374 if (threw && !isUserFd) fs.closeSync(fd);
379 function tryReadSync(fd, isUserFd, buffer, pos, len) { argument
386 if (threw && !isUserFd) fs.closeSync(fd);
393 const isUserFd = isFd(path); // File descriptor ownership
394 const fd = isUserFd ? path : fs.openSync(path, options.flag, 0o666);
[all …]
/third_party/node/lib/internal/fs/
Dread_file_context.js77 this.isUserFd = undefined;
117 if (this.isUserFd) {