Lines Matching defs:mounts
2416 }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2746 var mounts = [];
2752 mounts.push(m);
2754 check.push.apply(check, m.mounts);
2757 return mounts;
2764 var mounts = FS.getMounts(FS.root.mount);
2775 if (++completed >= mounts.length) {
2780 // sync all mounts
2781 mounts.forEach(function (mount) {
2813 mounts: []
2829 node.mount.mounts.push(mount);
2841 // destroy the nodes for this mount, and all its child mounts
2844 var mounts = FS.getMounts(mount);
2852 if (mounts.indexOf(current.mount) !== -1) {
2863 // remove this mount from the child mounts
2864 var idx = node.mount.mounts.indexOf(mount);
2866 node.mount.mounts.splice(idx, 1);