Lines Matching refs:upcase
635 vol->upcase);
662 ntfschar *upcase;
671 /* Now load the upcase table from $UpCase. */
685 * Note: Normally, the upcase table has a length equal to 65536
697 upcase = (ntfschar*)ntfs_malloc(na->data_size);
698 if (!upcase)
701 l = ntfs_attr_pread(na, 0, na->data_size, upcase);
713 && (le16_to_cpu(upcase[k])
721 /* free the bad upcase record */
723 free(upcase);
725 /* keep the default upcase but return an error */
726 free(upcase);
729 /* accept the upcase table read from $UpCase */
730 free(vol->upcase);
731 vol->upcase = upcase;
1468 /* Create the default upcase table. */
1469 vol->upcase_len = ntfs_upcase_build_default(&vol->upcase);
1470 if (!vol->upcase_len || !vol->upcase)
1541 free(vol->upcase);