Lines Matching defs:mounts
2321 }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2651 var mounts = [];
2657 mounts.push(m);
2659 check.push.apply(check, m.mounts);
2662 return mounts;
2669 var mounts = FS.getMounts(FS.root.mount);
2680 if (++completed >= mounts.length) {
2685 // sync all mounts
2686 mounts.forEach(function (mount) {
2718 mounts: []
2734 node.mount.mounts.push(mount);
2746 // destroy the nodes for this mount, and all its child mounts
2749 var mounts = FS.getMounts(mount);
2757 if (mounts.indexOf(current.mount) !== -1) {
2768 // remove this mount from the child mounts
2769 var idx = node.mount.mounts.indexOf(mount);
2771 node.mount.mounts.splice(idx, 1);