Home | History | Annotate | Download | only in embenchen

Lines Matching defs:mounts

2453     }var FS={root:null,mounts:[],devices:[null],streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},handleFSError:function (e) {
2783 var mounts = [];
2789 mounts.push(m);
2791 check.push.apply(check, m.mounts);
2794 return mounts;
2801 var mounts = FS.getMounts(FS.root.mount);
2812 if (++completed >= mounts.length) {
2817 // sync all mounts
2818 mounts.forEach(function (mount) {
2850 mounts: []
2866 node.mount.mounts.push(mount);
2878 // destroy the nodes for this mount, and all its child mounts
2881 var mounts = FS.getMounts(mount);
2889 if (mounts.indexOf(current.mount) !== -1) {
2900 // remove this mount from the child mounts
2901 var idx = node.mount.mounts.indexOf(mount);
2903 node.mount.mounts.splice(idx, 1);