Lines Matching refs:nameTable
2443 …}var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",… property
2527 return ((parentid + hash) >>> 0) % FS.nameTable.length;
2530 node.name_next = FS.nameTable[hash];
2531 FS.nameTable[hash] = node;
2534 if (FS.nameTable[hash] === node) {
2535 FS.nameTable[hash] = node.name_next;
2537 var current = FS.nameTable[hash];
2552 for (var node = FS.nameTable[hash]; node; node = node.name_next) {
2873 Object.keys(FS.nameTable).forEach(function (hash) {
2874 var current = FS.nameTable[hash];
3469 FS.nameTable = new Array(4096);