Lines Matching defs:intx_file
866 INTX_FILE *intx_file;
868 intx_file =
870 if (!intx_file) {
876 intx_file) != na->data_size) {
878 free(intx_file);
882 if (intx_file->magic == INTX_BLOCK_DEVICE &&
887 intx_file->major),
889 intx_file->minor));
891 if (intx_file->magic == INTX_CHARACTER_DEVICE &&
896 intx_file->major),
898 intx_file->minor));
900 if (intx_file->magic == INTX_SYMBOLIC_LINK) {
907 intx_file->target,
915 free(intx_file);
923 free(intx_file);
1121 INTX_FILE *intx_file = NULL;
1193 intx_file = (INTX_FILE*)ntfs_malloc(na->data_size);
1194 if (!intx_file) {
1198 if (ntfs_attr_pread(na, 0, na->data_size, intx_file) != na->data_size) {
1203 if (intx_file->magic != INTX_SYMBOLIC_LINK) {
1208 if (ntfs_ucstombs(intx_file->target, (na->data_size -
1215 if (intx_file)
1216 free(intx_file);