Lines Matching defs:mounts
2307 }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2637 var mounts = [];
2643 mounts.push(m);
2645 check.push.apply(check, m.mounts);
2648 return mounts;
2655 var mounts = FS.getMounts(FS.root.mount);
2666 if (++completed >= mounts.length) {
2671 // sync all mounts
2672 mounts.forEach(function (mount) {
2704 mounts: []
2720 node.mount.mounts.push(mount);
2732 // destroy the nodes for this mount, and all its child mounts
2735 var mounts = FS.getMounts(mount);
2743 if (mounts.indexOf(current.mount) !== -1) {
2754 // remove this mount from the child mounts
2755 var idx = node.mount.mounts.indexOf(mount);
2757 node.mount.mounts.splice(idx, 1);