Lines Matching refs:bigint

213   if (typeof mode === 'bigint')
606 * @param {number | bigint | null} position
697 * position?: number | bigint | null;
1533 * @param {{ bigint?: boolean; }} [options]
1540 function fstat(fd, options = { bigint: false }, callback) {
1548 const req = new FSReqCallback(options.bigint);
1550 binding.fstat(fd, options.bigint, req);
1557 * @param {{ bigint?: boolean; }} [options]
1564 function lstat(path, options = { bigint: false }, callback) {
1572 const req = new FSReqCallback(options.bigint);
1574 binding.lstat(pathModule.toNamespacedPath(path), options.bigint, req);
1580 * @param {{ bigint?: boolean; }} [options]
1587 function stat(path, options = { bigint: false }, callback) {
1595 const req = new FSReqCallback(options.bigint);
1597 binding.stat(pathModule.toNamespacedPath(path), options.bigint, req);
1600 function statfs(path, options = { bigint: false }, callback) {
1607 const req = new FSReqCallback(options.bigint);
1615 binding.statfs(pathModule.toNamespacedPath(path), options.bigint, req);
1636 * bigint?: boolean;
1640 function fstatSync(fd, options = { bigint: false }) {
1643 const stats = binding.fstat(fd, options.bigint, undefined, ctx);
1653 * bigint?: boolean;
1658 function lstatSync(path, options = { bigint: false, throwIfNoEntry: true }) {
1662 options.bigint, undefined, ctx);
1675 * bigint?: boolean;
1680 function statSync(path, options = { bigint: false, throwIfNoEntry: true }) {
1684 options.bigint, undefined, ctx);
1692 function statfsSync(path, options = { bigint: false }) {
1696 options.bigint, undefined, ctx);
2448 * bigint?: boolean;
2482 stat = new watchers.StatWatcher(options.bigint);
2802 return fs.lstat(base, { bigint: true }, gotStat);