Lines Matching refs:target
581 int SysSymlink(const char *target, const char *linkpath)
587 if (target != NULL) {
588 ret = UserPathCopy(target, &targetRet);
746 int SysMount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags,
759 if (target != NULL) {
760 ret = UserPathCopy(target, &targetRet);
814 int SysUmount(const char *target)
823 if (target != NULL) {
824 ret = UserPathCopy(target, &pathRet);
830 ret = umount(target ? pathRet : NULL);
974 int SysUmount2(const char *target, int flags)
979 return SysUmount(target);
1915 int SysSymlinkat(const char *target, int dirfd, const char *linkpath)
1921 if (target != NULL) {
1922 ret = UserPathCopy(target, &targetRet);