Lines Matching refs:nameTable
2304 …}var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",… property
2388 return ((parentid + hash) >>> 0) % FS.nameTable.length;
2391 node.name_next = FS.nameTable[hash];
2392 FS.nameTable[hash] = node;
2395 if (FS.nameTable[hash] === node) {
2396 FS.nameTable[hash] = node.name_next;
2398 var current = FS.nameTable[hash];
2413 for (var node = FS.nameTable[hash]; node; node = node.name_next) {
2734 Object.keys(FS.nameTable).forEach(function (hash) {
2735 var current = FS.nameTable[hash];
3330 FS.nameTable = new Array(4096);