Home
last modified time | relevance | path

Searched refs:vroot_result (Results 1 – 18 of 18) sorted by relevance

/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dchdir.cc33 vroot_result= chdir(path); in chdir_thunk()
34 return(vroot_result == 0); in chdir_thunk()
40 return(vroot_result); in chdir_vroot()
H A Dchroot.cc36 vroot_result= chroot(path); in chroot_thunk()
37 return(vroot_result == 0); in chroot_thunk()
43 return(vroot_result); in chroot_vroot()
H A Drmdir.cc36 vroot_result= rmdir(path); in rmdir_thunk()
37 return(vroot_result == 0); in rmdir_thunk()
43 return(vroot_result); in rmdir_vroot()
H A Dunlink.cc36 vroot_result= unlink(path); in unlink_thunk()
37 return(vroot_result == 0); in unlink_thunk()
43 return(vroot_result); in unlink_vroot()
H A Daccess.cc33 vroot_result= access(path, vroot_args.access.mode); in access_thunk()
34 return((vroot_result == 0) || (errno != ENOENT)); in access_thunk()
41 return(vroot_result); in access_vroot()
H A Dchmod.cc37 vroot_result= chmod(path, vroot_args.chmod.mode); in chmod_thunk()
38 return(vroot_result == 0); in chmod_thunk()
45 return(vroot_result); in chmod_vroot()
H A Dcreat.cc38 vroot_result= creat(path, vroot_args.creat.mode); in creat_thunk()
39 return(vroot_result >= 0); in creat_thunk()
46 return(vroot_result); in creat_vroot()
H A Dmkdir.cc37 vroot_result= mkdir(path, vroot_args.mkdir.mode); in mkdir_thunk()
38 return(vroot_result == 0); in mkdir_thunk()
45 return(vroot_result); in mkdir_vroot()
H A Dtruncate.cc36 vroot_result= truncate(path, vroot_args.truncate.length); in truncate_thunk()
37 return(vroot_result == 0); in truncate_thunk()
44 return(vroot_result); in truncate_vroot()
H A Dlstat.cc37 vroot_result= lstat(path, vroot_args.lstat.buffer); in lstat_thunk()
38 return(vroot_result == 0); in lstat_thunk()
45 return(vroot_result); in lstat_vroot()
H A Dstat.cc37 vroot_result= stat(path, vroot_args.stat.buffer); in stat_thunk()
38 return(vroot_result == 0); in stat_thunk()
45 return(vroot_result); in stat_vroot()
H A Dutimes.cc37 vroot_result= utimes(path, vroot_args.utimes.time); in utimes_thunk()
38 return(vroot_result == 0); in utimes_thunk()
45 return(vroot_result); in utimes_vroot()
H A Dmount.cc37 vroot_result= mount(path, vroot_args.mount.name, vroot_args.mount.mode); in mount_thunk()
38 return(vroot_result == 0); in mount_thunk()
46 return(vroot_result); in mount_vroot()
H A Dchown.cc37 vroot_result= chown(path, vroot_args.chown.user, vroot_args.chown.group); in chown_thunk()
38 return(vroot_result == 0); in chown_thunk()
46 return(vroot_result); in chown_vroot()
H A Dreadlink.cc36 vroot_result= readlink(path, vroot_args.readlink.buffer, vroot_args.readlink.buffer_size); in readlink_thunk()
37 return(vroot_result >= 0); in readlink_thunk()
45 return(vroot_result); in readlink_vroot()
H A Dopen.cc38 vroot_result= open(path, vroot_args.open.flags, vroot_args.open.mode); in open_thunk()
39 return(vroot_result >= 0); in open_thunk()
48 return(vroot_result); in open_vroot()
H A Dargs.cc31 int vroot_result; variable
/illumos-gate/usr/src/cmd/make/include/vroot/
H A Dargs.h88 extern int vroot_result;