Lines Matching refs:nameTable
2413 …}var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",… property
2497 return ((parentid + hash) >>> 0) % FS.nameTable.length;
2500 node.name_next = FS.nameTable[hash];
2501 FS.nameTable[hash] = node;
2504 if (FS.nameTable[hash] === node) {
2505 FS.nameTable[hash] = node.name_next;
2507 var current = FS.nameTable[hash];
2522 for (var node = FS.nameTable[hash]; node; node = node.name_next) {
2843 Object.keys(FS.nameTable).forEach(function (hash) {
2844 var current = FS.nameTable[hash];
3439 FS.nameTable = new Array(4096);