Lines Matching refs:junction

213  *		Search for a directory junction or a symbolic link
463 * If the reparse data looks like a junction point or symbolic
545 * Check and translate the target of a junction point or
559 static char *ntfs_get_fulllink(ntfs_volume *vol, ntfschar *junction,
571 * For a valid directory junction we want \??\x:\
575 && !memcmp(junction,dir_junction_head,8)
576 && junction[4]
577 && (junction[5] == const_cpu_to_le16(':'))
578 && (junction[6] == const_cpu_to_le16('\\')))
582 * For a valid volume junction we want \\?\Volume{
586 && !memcmp(junction,vol_junction_head,22)
587 && (junction[count-1] == const_cpu_to_le16('\\')))
592 * Directory junction with an explicit path and
598 && junction[7]
599 && !ntfs_drive_letter(vol, junction[4])) {
600 target = search_absolute(vol,&junction[7],count - 7, isdir);
620 sz = ntfs_ucstombs(&junction[4],
662 char *ntfs_get_abslink(ntfs_volume *vol, ntfschar *junction, int count,
679 && junction[0]
680 && (junction[1] == const_cpu_to_le16(':'))
681 && (junction[2] == const_cpu_to_le16('\\')))
688 && (junction[0] == const_cpu_to_le16('\\')))
700 && junction[3]
701 && !ntfs_drive_letter(vol, junction[0]))
704 target = search_absolute(vol, &junction[1],
707 target = search_absolute(vol, &junction[3],
727 sz = ntfs_ucstombs(&junction[0],
767 static char *ntfs_get_rellink(ntfs_inode *ni, ntfschar *junction, int count)
771 target = search_relative(ni,junction,count);
776 * Get the target for a junction point or symbolic link
782 * symbolic link or directory junction
903 * Check whether a reparse point looks like a junction point