Searched refs:vroot_result (Results 1 – 18 of 18) sorted by relevance
/illumos-gate/usr/src/cmd/make/lib/vroot/ |
H A D | chdir.cc | 33 vroot_result= chdir(path); in chdir_thunk() 34 return(vroot_result == 0); in chdir_thunk() 40 return(vroot_result); in chdir_vroot()
|
H A D | chroot.cc | 36 vroot_result= chroot(path); in chroot_thunk() 37 return(vroot_result == 0); in chroot_thunk() 43 return(vroot_result); in chroot_vroot()
|
H A D | rmdir.cc | 36 vroot_result= rmdir(path); in rmdir_thunk() 37 return(vroot_result == 0); in rmdir_thunk() 43 return(vroot_result); in rmdir_vroot()
|
H A D | unlink.cc | 36 vroot_result= unlink(path); in unlink_thunk() 37 return(vroot_result == 0); in unlink_thunk() 43 return(vroot_result); in unlink_vroot()
|
H A D | access.cc | 33 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 D | chmod.cc | 37 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 D | creat.cc | 38 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 D | mkdir.cc | 37 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 D | truncate.cc | 36 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 D | lstat.cc | 37 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 D | stat.cc | 37 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 D | utimes.cc | 37 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 D | mount.cc | 37 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 D | chown.cc | 37 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 D | readlink.cc | 36 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 D | open.cc | 38 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 D | args.cc | 31 int vroot_result; variable
|
/illumos-gate/usr/src/cmd/make/include/vroot/ |
H A D | args.h | 88 extern int vroot_result;
|