Searched refs:opts_hdr (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/ntfs-84/mount/
H A Dmount_ntfs.c131 ntfs_mount_options_header *opts_hdr; local
184 opts_hdr = valloc(((sizeof(*opts_hdr) + 7) & ~7) + sizeof(*opts));
185 if (!opts_hdr)
187 *opts_hdr = (ntfs_mount_options_header) {
192 opts = (ntfs_mount_options_1_0*)((char*)opts_hdr +
193 ((sizeof(*opts_hdr) + 7) & ~7));
207 if (mount(ntfs, dir, flags, opts_hdr) < 0)
209 free(opts_hdr);
/macosx-10.10/ntfs-84/kext/
H A Dntfs_vfsops.c4076 ntfs_mount_options_header opts_hdr; local
4090 err = copyin(data, (caddr_t)&opts_hdr, sizeof(opts_hdr));
4096 ntfs_debug("Mount options header version %d.%d.", opts_hdr.major_ver,
4097 opts_hdr.minor_ver);
4099 switch (opts_hdr.major_ver) {
4101 if (opts_hdr.minor_ver != 0)
4106 err = copyin((data + sizeof(opts_hdr) + 7) & ~7,

Completed in 96 milliseconds