Lines Matching defs:entry

74  * If there is an FDISK entry for the device where we're about to
712 (void) fprintf(stderr, gettext("Bogus FDISK entry? "
734 (void) fprintf(stderr, gettext("Bogus FDISK entry? "
762 "(missing extended partition entry)\n"));
841 gettext("Bogus FDISK entry? A logical "
849 gettext("Bogus FDISK entry? "
892 (void) fprintf(stderr, gettext("Bogus FDISK entry? "
1035 Fatentsize = 12; /* Size of fat entry in bits */
1256 Fatentsize = 12; /* Size of fat entry in bits */
1428 "entry size (%d bits) with FDISK table.\n"
1435 gettext("Chosen/computed FAT entry size (%d bits) "
1440 "that matches the FDISK entry.\n"), FdiskFATsize);
2611 * This routine fills a FAT entry with the value supplied to it as an
2613 * 0th entry. The clustnum is the cluster entry that should be updated.
2614 * The value is the new value for the entry.
2866 struct pcdir *entry;
2869 * Build a root directory. It will have at least one entry,
2885 entry = rootdirp;
2889 /* Create directory entry for first file, if there is one */
2891 dirent_fname_fill(entry, ffn);
2892 entry->pcd_attr = Firstfileattr;
2893 dirent_time_fill(entry);
2894 entry->pcd_scluster_lo = htols(ffstart);
2897 entry->un.pcd_scluster_hi = htols(ffstart);
2899 entry->pcd_size = htoli(ffsize);
2900 entry++;
2903 /* Create directory entry for volume label, if there is one */
2905 dirent_label_fill(entry, Label);
2906 entry->pcd_attr = PCA_ARCH | PCA_LABEL;
2907 dirent_time_fill(entry);
2908 entry->pcd_scluster_lo = 0;
2910 entry->un.pcd_scluster_hi = 0;
2912 entry->pcd_size = 0;
2913 entry++;