Home | History | Annotate | Download | only in embenchen

Lines Matching defs:mounts

2690     }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
3020 var mounts = [];
3026 mounts.push(m);
3028 check.push.apply(check, m.mounts);
3031 return mounts;
3038 var mounts = FS.getMounts(FS.root.mount);
3049 if (++completed >= mounts.length) {
3054 // sync all mounts
3055 mounts.forEach(function (mount) {
3087 mounts: []
3103 node.mount.mounts.push(mount);
3115 // destroy the nodes for this mount, and all its child mounts
3118 var mounts = FS.getMounts(mount);
3126 if (mounts.indexOf(current.mount) !== -1) {
3137 // remove this mount from the child mounts
3138 var idx = node.mount.mounts.indexOf(mount);
3140 node.mount.mounts.splice(idx, 1);