Lines Matching refs:nameTable
2661 …}var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",… property
2745 return ((parentid + hash) >>> 0) % FS.nameTable.length;
2748 node.name_next = FS.nameTable[hash];
2749 FS.nameTable[hash] = node;
2752 if (FS.nameTable[hash] === node) {
2753 FS.nameTable[hash] = node.name_next;
2755 var current = FS.nameTable[hash];
2770 for (var node = FS.nameTable[hash]; node; node = node.name_next) {
3091 Object.keys(FS.nameTable).forEach(function (hash) {
3092 var current = FS.nameTable[hash];
3687 FS.nameTable = new Array(4096);