Lines Matching defs:intx_file
969 INTX_FILE *intx_file;
971 intx_file = ntfs_malloc(na->data_size);
972 if (!intx_file) {
978 intx_file) != na->data_size) {
980 free(intx_file);
984 if (intx_file->magic == INTX_BLOCK_DEVICE &&
989 intx_file->major),
991 intx_file->minor));
993 if (intx_file->magic == INTX_CHARACTER_DEVICE &&
998 intx_file->major),
1000 intx_file->minor));
1002 if (intx_file->magic == INTX_SYMBOLIC_LINK) {
1009 intx_file->target,
1017 free(intx_file);
1025 free(intx_file);
1139 INTX_FILE *intx_file = NULL;
1224 intx_file = ntfs_malloc(na->data_size);
1225 if (!intx_file) {
1229 if (ntfs_attr_pread(na, 0, na->data_size, intx_file) != na->data_size) {
1234 if (intx_file->magic != INTX_SYMBOLIC_LINK) {
1239 if (ntfs_ucstombs(intx_file->target, (na->data_size -
1246 if (intx_file)
1247 free(intx_file);