Home | History | Annotate | Download | only in embenchen

Lines Matching defs:mount

1419   var ERRNO_MESSAGES={0:"Success",1:"Not super-user",2:"No such file or directory",3:"No such process",4:"Interrupted system call",5:"I/O error",6:"No such device or address",7:"Arg list too long",8:"Exec format error",9:"Bad file number",10:"No children",11:"No more processes",12:"Not enough core",13:"Permission denied",14:"Bad address",15:"Block device required",16:"Mount device busy",17:"File exists",18:"Cross-device link",19:"No such device",20:"Not a directory",21:"Is a directory",22:"Invalid argument",23:"Too many open files in system",24:"Too many open files",25:"Not a typewriter",26:"Text file busy",27:"File too large",28:"No space left on device",29:"Illegal seek",30:"Read only file system",31:"Too many links",32:"Broken pipe",33:"Math arg out of domain of func",34:"Math result not representable",35:"File locking deadlock error",36:"File or path name too long",37:"No record locks available",38:"Function not implemented",39:"Directory not empty",40:"Too many symbolic links",42:"No message of desired type",43:"Identifier removed",44:"Channel number out of range",45:"Level 2 not synchronized",46:"Level 3 halted",47:"Level 3 reset",48:"Link number out of range",49:"Protocol driver not attached",50:"No CSI structure available",51:"Level 2 halted",52:"Invalid exchange",53:"Invalid request descriptor",54:"Exchange full",55:"No anode",56:"Invalid request code",57:"Invalid slot",59:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",72:"Multihop attempted",73:"Cross mount
1665 var MEMFS={ops_table:null,CONTENT_OWNING:1,CONTENT_FLEXIBLE:2,CONTENT_FIXED:3,mount:function (mount) {
1930 },DB_VERSION:21,DB_STORE_NAME:"FILE_DATA",mount:function (mount) {
1932 return MEMFS.mount.apply(null, arguments);
1933 },syncfs:function (mount, populate, callback) {
1934 IDBFS.getLocalSet(mount, function(err, local) {
1937 IDBFS.getRemoteSet(mount, function(err, remote) {
1983 },getLocalSet:function (mount, callback) {
1995 var check = FS.readdir(mount.mountpoint).filter(isRealDir).map(toAbsolute(mount.mountpoint));
2015 },getRemoteSet:function (mount, callback) {
2018 IDBFS.getDB(mount.mountpoint, function(err, db) {
2177 },mount:function (mount) {
2179 return NODEFS.createNode(null, '/', NODEFS.getMode(mount.opts.root), 0);
2208 parts.push(node.mount.opts.root);
2453 // jump to the mount's root node if this is a mountpoint
2483 var mount = node.mount.mountpoint;
2484 if (!path) return mount;
2485 return mount[mount.length-1] !== '/' ? mount + '/' + path : mount + path;
2537 this.mount = parent.mount;
2742 },getMounts:function (mount
2744 var check = [mount];
2761 var mounts = FS.getMounts(FS.root.mount);
2778 mounts.forEach(function (mount) {
2779 if (!mount.type.syncfs) {
2782 mount.type.syncfs(mount, populate, done);
2784 },mount:function (type, opts, mountpoint) {
2806 var mount = {
2814 var mountRoot = type.mount(mount);
2815 mountRoot.mount = mount;
2816 mount.root = mountRoot;
2822 node.mounted = mount;
2824 // add the new mount to the current mount's children
2825 if (node.mount) {
2826 node.mount.mounts.push(mount);
2838 // destroy the nodes for this mount, and all its child mounts
2840 var mount = node.mounted;
2841 var mounts = FS.getMounts(mount);
2849 if (mounts.indexOf(current.mount) !== -1) {
2860 // remove this mount from the child mounts
2861 var idx = node.mount.mounts.indexOf(mount);
2863 node.mount.mounts.splice(idx, 1);
2922 // need to be part of the same mount
2923 if (old_dir.mount !== new_dir.mount) {
3441 FS.mount(MEMFS, {}, '/');
3881 function _mkport() { throw 'TODO' }var SOCKFS={mount:function (mount) {
5633 __ATINIT__.push({ func: function() { SOCKFS.root = FS.mount(SOCKFS, {}, null); } });