Lines Matching defs:mounts
2664 }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2994 var mounts = [];
3000 mounts.push(m);
3002 check.push.apply(check, m.mounts);
3005 return mounts;
3012 var mounts = FS.getMounts(FS.root.mount);
3023 if (++completed >= mounts.length) {
3028 // sync all mounts
3029 mounts.forEach(function (mount) {
3061 mounts: []
3077 node.mount.mounts.push(mount);
3089 // destroy the nodes for this mount, and all its child mounts
3092 var mounts = FS.getMounts(mount);
3100 if (mounts.indexOf(current.mount) !== -1) {
3111 // remove this mount from the child mounts
3112 var idx = node.mount.mounts.indexOf(mount);
3114 node.mount.mounts.splice(idx, 1);