| /src/sys/rump/librump/rumpkern/ | 
| etfs_wrap.c | 39 rump_etfs_register(const char *key, const char *hostpath, 43 	return rump__etfs_register(key, hostpath, ftype,
 48 rump_etfs_register_withsize(const char *key, const char *hostpath,
 52 	return rump__etfs_register(key, hostpath, ftype, begin, size);
 
 | 
| /src/tests/dev/raidframe/ | 
| t_raid.sh | 78 	    -d key=/disk0,hostpath=disk0.img,size=1m		\ 79 	    -d key=/disk1,hostpath=disk1.img,size=1m		\
 131 	    -d key=/disk0,hostpath=disk0.img,size=${RAID_MEDIASIZE}	\
 132 	    -d key=/disk1,hostpath=disk1.img,size=${RAID_MEDIASIZE}	\
 149 	    -d key=/disk0,hostpath=disk0.img,size=${RAID_MEDIASIZE}	\
 150 	    -d key=/disk1,hostpath=disk1.img,size=${RAID_MEDIASIZE}	\
 181 	    -d key=/disk0,hostpath=disk0.img,size=${RAID_MEDIASIZE}	\
 182 	    -d key=/disk1,hostpath=disk1.img,size=${RAID_MEDIASIZE}	\
 193 	    -d key=/disk0,hostpath=disk0.img,size=${RAID_MEDIASIZE}	\
 194 	    -d key=/disk1,hostpath=disk1.img,size=${RAID_MEDIASIZE}
 [all...]
 | 
| /src/tests/usr.bin/rump_server/ | 
| t_disk.sh | 55 test_case size -d key=/img,hostpath=the.img,size=32k 61 test_case offset -d key=/img,hostpath=the.img,size=32k,offset=16k
 67 test_case notrunc -d key=/img,hostpath=the.img,size=8k,offset=16k
 77 test_case data -d key=/img,hostpath=the.img,size=8k,offset=16k
 91 test_case type_chr -d key=/img,hostpath=the.img,size=32k,type=chr
 98 test_case type_reg -d key=/img,hostpath=the.img,size=32k,type=reg
 105 test_case type_blk -d key=/img,hostpath=the.img,size=32k,type=blk
 112 test_case type_blk_default -d key=/img,hostpath=the.img,size=32k
 
 | 
| /src/tests/dev/cgd/ | 
| t_cgd.sh | 46 	    ${cgdserver} -d key=/dev/dk,hostpath=dk.img,size=1m unix://csock 76 	    ${cgdserver} -d key=/dev/dk,hostpath=dk.img,size=1m unix://csock
 111 	    ${cgdserver} -d key=/dev/dk,hostpath=dk.img,size=1m unix://csock
 155 	    ${cgdserver} -d key=/dev/dk,hostpath=dk.img,size=1m unix://csock
 
 | 
| /src/usr.bin/rump_allserver/ | 
| rump_allserver.c | 106 	"hostpath", 121 	const char *hostpath;  member in struct:etfsreg
 163 			char *key, *hostpath;  local in function:main
 170 			key = hostpath = NULL;
 186 					if (hostpath != NULL) {
 188 						    "hostpath already given\n");
 191 					hostpath = value;
 286 			if (key == NULL || hostpath == NULL ||
 304 			etfs[curetfs].hostpath = hostpath;
 [all...]
 | 
| /src/tests/lib/librumphijack/ | 
| t_tcpip.sh | 263 	    -d key=/dk,hostpath=ffs.img,size=host 290 	    -lrumpdev_disk -d key=/dk,hostpath=ffs.img,size=host
 
 | 
| /src/tests/fs/nfs/ | 
| t_rquotad.sh | 95 	    -d key=/dk,hostpath=${IMG},size=host ${RUMP_SERVER} 
 | 
| /src/sys/rump/librump/rumpvfs/ | 
| rumpfs.c | 327 etfsregister(const char *key, const char *hostpath, 345 	if ((error = rumpuser_getfileinfo(hostpath, &fsize, &hft)) != 0)
 367 		error = rumpblk_register(hostpath, &dmin, begin, size);
 385 		size_t len = strlen(hostpath)+1;
 388 		memcpy(rn->rn_hostpath, hostpath, len);
 406 			rumpblk_deregister(hostpath);
 418 		aprint_verbose("/%s: hostpath %s (%s)\n", key, hostpath, buf);
 
 |