Home | History | Annotate | Download | only in embenchen

Lines Matching defs:mounts

2450     }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2780 var mounts = [];
2786 mounts.push(m);
2788 check.push.apply(check, m.mounts);
2791 return mounts;
2798 var mounts = FS.getMounts(FS.root.mount);
2809 if (++completed >= mounts.length) {
2814 // sync all mounts
2815 mounts.forEach(function (mount) {
2847 mounts: []
2863 node.mount.mounts.push(mount);
2875 // destroy the nodes for this mount, and all its child mounts
2878 var mounts = FS.getMounts(mount);
2886 if (mounts.indexOf(current.mount) !== -1) {
2897 // remove this mount from the child mounts
2898 var idx = node.mount.mounts.indexOf(mount);
2900 node.mount.mounts.splice(idx, 1);