Lines Matching refs:nameTable
2450 …}var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",… property
2534 return ((parentid + hash) >>> 0) % FS.nameTable.length;
2537 node.name_next = FS.nameTable[hash];
2538 FS.nameTable[hash] = node;
2541 if (FS.nameTable[hash] === node) {
2542 FS.nameTable[hash] = node.name_next;
2544 var current = FS.nameTable[hash];
2559 for (var node = FS.nameTable[hash]; node; node = node.name_next) {
2880 Object.keys(FS.nameTable).forEach(function (hash) {
2881 var current = FS.nameTable[hash];
3476 FS.nameTable = new Array(4096);