Home | History | Annotate | Download | only in embenchen

Lines Matching defs:mounts

2415     }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2745 var mounts = [];
2751 mounts.push(m);
2753 check.push.apply(check, m.mounts);
2756 return mounts;
2763 var mounts = FS.getMounts(FS.root.mount);
2774 if (++completed >= mounts.length) {
2779 // sync all mounts
2780 mounts.forEach(function (mount) {
2812 mounts: []
2828 node.mount.mounts.push(mount);
2840 // destroy the nodes for this mount, and all its child mounts
2843 var mounts = FS.getMounts(mount);
2851 if (mounts.indexOf(current.mount) !== -1) {
2862 // remove this mount from the child mounts
2863 var idx = node.mount.mounts.indexOf(mount);
2865 node.mount.mounts.splice(idx, 1);