Lines Matching refs:path
37 char *path; in xenhypfs_cat() local
42 path = argv[0]; in xenhypfs_cat()
49 path = argv[1]; in xenhypfs_cat()
56 result = xenhypfs_read(hdl, path); in xenhypfs_cat()
71 static int xenhypfs_wr(char *path, char *val) in xenhypfs_wr() argument
75 ret = xenhypfs_write(hdl, path, val); in xenhypfs_wr()
115 static int xenhypfs_ls(char *path) in xenhypfs_ls() argument
121 ent = xenhypfs_readdir(hdl, path, &n); in xenhypfs_ls()
137 static int xenhypfs_tree_sub(char *path, unsigned int depth) in xenhypfs_tree_sub() argument
144 ent = xenhypfs_readdir(hdl, path, &n); in xenhypfs_tree_sub()
152 if (asprintf(&p, "%s%s%s", path, (depth == 1) ? "" : "/", in xenhypfs_tree_sub()