Searched refs:vol (Results 1 - 25 of 68) sorted by relevance

123

/macosx-10.10/ntfs-84/kext/
H A Dntfs_quota.h47 __private_extern__ errno_t ntfs_quotas_mark_out_of_date(ntfs_volume *vol);
H A Dntfs_vfsops.c234 * @vol: ntfs_volume of device to read the boot sector from
257 static errno_t ntfs_boot_sector_read(ntfs_volume *vol, kauth_cred_t cred, argument
260 daddr64_t nr_blocks = vol->nr_blocks;
263 mount_t mp = vol->mp;
264 vnode_t dev_vn = vol->dev_vn;
294 if (!(vol->on_errors & ON_ERRORS_RECOVER)) {
367 if (bs1 && !NVolReadOnly(vol)) {
397 * ntfs_boot_sector_parse - parse the boot sector and store the data in @vol
398 * @vol: volume structure to initialise with data from boot sector
402 * the ntfs_volume @vol
409 ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b) argument
595 ntfs_setup_allocators(ntfs_volume *vol) argument
687 ntfs_mft_inode_get(ntfs_volume *vol) argument
1188 ntfs_inode_attach(ntfs_volume *vol, const ino64_t mft_no, ntfs_inode **ni, vnode_t parent_vn) argument
1333 ntfs_mft_mirror_load(ntfs_volume *vol) argument
1405 ntfs_mft_mirror_check(ntfs_volume *vol) argument
1589 ntfs_upcase_load(ntfs_volume *vol) argument
1708 ntfs_attrdef_load(ntfs_volume *vol) argument
1788 ntfs_volume_load(ntfs_volume *vol) argument
1977 ntfs_windows_hibernation_status_check(ntfs_volume *vol, BOOL *is_hibernated) argument
2092 ntfs_volume_flags_write(ntfs_volume *vol, const VOLUME_FLAGS flags) argument
2148 ntfs_volume_flags_set(ntfs_volume *vol, VOLUME_FLAGS flags) argument
2164 ntfs_volume_flags_clear(ntfs_volume *vol, VOLUME_FLAGS flags) argument
2177 ntfs_secure_load(ntfs_volume *vol) argument
2310 ntfs_objid_load(ntfs_volume *vol) argument
2374 ntfs_quota_load(ntfs_volume *vol) argument
2447 ntfs_usnjrnl_load(ntfs_volume *vol) argument
2629 ntfs_system_inodes_get(ntfs_volume *vol) argument
3258 ntfs_set_nr_free_clusters(ntfs_volume *vol) argument
3306 ntfs_set_nr_mft_records(ntfs_volume *vol) argument
3364 ntfs_statfs(ntfs_volume *vol, struct vfsstatfs *sfs) argument
3501 ntfs_do_postponed_release(ntfs_volume *vol) argument
3574 ntfs_volume *vol; local
3784 ntfs_volume *vol = ni->vol; local
3871 ntfs_volume *vol = NTFS_MP(mp); local
3918 ntfs_volume *vol = NTFS_MP(mp); local
4069 ntfs_volume *vol; local
4499 ntfs_volume *vol = NTFS_MP(mp); local
4630 ntfs_volume *vol = NTFS_MP(mp); local
5165 ntfs_volume_rename(ntfs_volume *vol, char *name) argument
[all...]
H A Dntfs_lcnalloc.c62 static errno_t ntfs_cluster_free_from_rl_nolock(ntfs_volume *vol,
68 * @vol: mounted ntfs volume on which to allocate the clusters
78 * @vol. @zone is either DATA_ZONE for allocation of normal clusters or
142 errno_t ntfs_cluster_alloc(ntfs_volume *vol, const VCN start_vcn, argument
165 if (!vol)
166 panic("%s(): !vol\n", __FUNCTION__);
167 lcnbmp_ni = vol->lcnbmp_ni;
190 lck_rw_lock_exclusive(&vol->lcnbmp_lock);
193 ntfs_error(vol->mp, "Failed to get vnode for $Bitmap.");
194 lck_rw_unlock_exclusive(&vol
900 ntfs_cluster_free_from_rl_nolock(ntfs_volume *vol, ntfs_rl_element *rl, const VCN start_vcn, s64 count, s64 *nr_freed) argument
1034 ntfs_cluster_free_from_rl(ntfs_volume *vol, ntfs_rl_element *rl, const VCN start_vcn, s64 count, s64 *nr_freed) argument
1130 ntfs_volume *vol; local
1367 ntfs_volume *vol; local
[all...]
H A Dntfs_quota.c55 * @vol: ntfs volume on which to mark the quotas out of date
57 * Mark the quotas out of date on the ntfs volume @vol and return 0 on success
60 errno_t ntfs_quotas_mark_out_of_date(ntfs_volume *vol) argument
70 if (NVolQuotaOutOfDate(vol))
72 quota_ni = vol->quota_ni;
73 if (!quota_ni || !vol->quota_q_ni) {
74 ntfs_error(vol->mp, "Quota inodes are not open.");
77 err = vnode_get(vol->quota_q_ni->vn);
79 ntfs_error(vol->mp, "Failed to get index vnode for "
83 lck_rw_lock_exclusive(&vol
[all...]
H A Dntfs_usnjrnl.c52 * @vol: ntfs volume on which to stamp the transaction log
54 * Stamp the transaction log ($UsnJrnl) on the ntfs volume @vol and return 0
60 errno_t ntfs_usnjrnl_stamp(ntfs_volume *vol) argument
63 if (!NVolUsnJrnlStamped(vol)) {
71 lck_spin_lock(&vol->usnjrnl_j_ni->size_lock);
72 j_size = vol->usnjrnl_j_ni->data_size;
73 lck_spin_unlock(&vol->usnjrnl_j_ni->size_lock);
74 max_ni = vol->usnjrnl_max_ni;
77 ntfs_error(vol->mp, "Failed to get vnode for "
84 ntfs_error(vol
[all...]
H A Dntfs_hash.c111 * @vol: ntfs volume to which the inode belongs
115 * volume @vol.
117 static inline unsigned long ntfs_inode_hash(const ntfs_volume *vol, argument
120 return (vol->dev + mft_no) & ntfs_inode_hash_mask;
125 * @vol: ntfs volume to which the inode belongs
129 * @mft_no on the volume @vol.
131 static inline ntfs_inode_list_head *ntfs_inode_hash_list(const ntfs_volume *vol, argument
134 return ntfs_inode_hash_table + ntfs_inode_hash(vol, mft_no);
149 const ntfs_volume *vol, const ntfs_inode_list_head *list,
161 if (ni->vol !
148 ntfs_inode_hash_list_find_nolock( const ntfs_volume *vol, const ntfs_inode_list_head *list, const ntfs_attr *na) argument
201 ntfs_inode_hash_list_find(const ntfs_volume *vol, const ntfs_inode_list_head *list, const ntfs_attr *na) argument
242 ntfs_inode_hash_lookup(ntfs_volume *vol, const ntfs_attr *na) argument
269 ntfs_inode_hash_get(ntfs_volume *vol, const ntfs_attr *na) argument
[all...]
H A Dntfs_mft.c96 ntfs_volume *vol; local
107 vol = ni->vol;
108 mft_ni = vol->mft_ni;
110 * If the volume is in the process of being unmounted then @vol->mft_ni
115 * @vol->mp may be NULL now which is ok. ntfs_error() deals
118 ntfs_error(vol->mp, "The volume is being unmounted, bailing "
126 ntfs_error(vol->mp, "Failed to get vnode for $MFT.");
137 vol->mft_record_size_shift)) {
139 ntfs_error(vol
439 ntfs_volume *vol; local
512 ntfs_mft_mirror_sync(ntfs_volume *vol, const s64 rec_no, const MFT_RECORD *m, const BOOL sync) argument
636 ntfs_mft_bitmap_find_and_alloc_free_rec_nolock(ntfs_volume *vol, ntfs_inode *base_ni, s64 *mft_no) argument
804 ntfs_mft_bitmap_extend_allocation_nolock(ntfs_volume *vol) argument
1131 ntfs_mft_bitmap_extend_initialized_nolock(ntfs_volume *vol) argument
1271 ntfs_mft_data_extend_allocation_nolock(ntfs_volume *vol) argument
1632 ntfs_mft_record_lay_out(const ntfs_volume *vol, const s64 mft_no, MFT_RECORD *m) argument
1711 ntfs_mft_record_format(ntfs_volume *vol, const s64 mft_no, const s64 new_initialized_size) argument
1856 ntfs_sd_attribute_insert(ntfs_volume *vol, MFT_RECORD *m, ATTR_RECORD *a, const struct vnode_attr *va) argument
1903 ntfs_index_root_attribute_insert(ntfs_volume *vol, MFT_RECORD *m, ATTR_RECORD *a) argument
2052 ntfs_mft_record_alloc(ntfs_volume *vol, struct vnode_attr *va, struct componentname *cn, ntfs_inode *base_ni, ntfs_inode **new_ni, MFT_RECORD **new_m, ATTR_RECORD **new_a) argument
3061 ntfs_volume *vol = ni->vol; local
[all...]
H A Dntfs_collate.c54 static int ntfs_collate_binary(ntfs_volume *vol, argument
91 static int ntfs_collate_filename(ntfs_volume *vol, argument
114 fn2->filename_length, 1, FALSE, vol->upcase,
115 vol->upcase_len);
120 vol->upcase, vol->upcase_len);
131 static int ntfs_collate_ntofs_ulongs(ntfs_volume *vol, argument
188 * @vol: ntfs volume to which the data items belong
202 int ntfs_collate(ntfs_volume *vol, COLLATION_RULE cr, argument
219 return ntfs_do_collate0x0[i](vol, data
[all...]
H A Dntfs_attr_list.c129 ntfs_error(ni->vol->mp, "Attribute list attribute of mft_no 0x%llx is "
132 NVolSetErrors(ni->vol);
168 err = ntfs_cluster_free_from_rl(ni->vol, ni->attr_list_rl.rl,
171 ntfs_warning(ni->vol->mp, "Failed to free some "
178 NVolSetErrors(ni->vol);
197 ntfs_error(ni->vol->mp, "Failed to find attribute list attribute in "
200 NVolSetErrors(ni->vol);
232 ntfs_volume *vol; local
241 vol = base_ni->vol;
1112 ntfs_volume *vol; local
1334 ntfs_volume *vol; local
[all...]
H A Dntfs_hash.h57 __private_extern__ ntfs_inode *ntfs_inode_hash_lookup(ntfs_volume *vol,
59 __private_extern__ ntfs_inode *ntfs_inode_hash_get(ntfs_volume *vol,
H A Dntfs_lcnalloc.h59 __private_extern__ errno_t ntfs_cluster_alloc(ntfs_volume *vol,
64 __private_extern__ errno_t ntfs_cluster_free_from_rl(ntfs_volume *vol,
H A Dntfs_runlist.h151 __private_extern__ errno_t ntfs_mapping_pairs_decompress(ntfs_volume *vol,
161 const ntfs_volume *vol, const ntfs_rl_element *rl,
164 __private_extern__ errno_t ntfs_mapping_pairs_build(const ntfs_volume *vol,
168 __private_extern__ errno_t ntfs_rl_truncate_nolock(const ntfs_volume *vol,
171 __private_extern__ errno_t ntfs_rl_punch_nolock(const ntfs_volume *vol,
174 __private_extern__ errno_t ntfs_rl_read(ntfs_volume *vol, ntfs_runlist *rl,
177 __private_extern__ errno_t ntfs_rl_write(ntfs_volume *vol, u8 *src,
180 __private_extern__ errno_t ntfs_rl_set(ntfs_volume *vol,
H A Dntfs_collate.h61 __private_extern__ int ntfs_collate(ntfs_volume *vol, COLLATION_RULE cr,
H A Dntfs_sfm.c109 BOOL ntfs_is_sfm_name(ntfs_volume *vol, argument
112 const ntfschar *upcase = vol->upcase;
113 const unsigned upcase_len = vol->upcase_len;
114 const BOOL case_sensitive = NVolCaseSensitive(vol);
H A Dntfs_secure.c196 * @vol: volume for which to determine the next security_id
207 errno_t ntfs_next_security_id_init(ntfs_volume *vol, le32 *next_security_id) argument
222 base_ni = vol->secure_ni;
224 panic("%s(): !vol->secure_ni\n", __FUNCTION__);
225 ni = vol->secure_sii_ni;
227 panic("%s(): !vol->secure_sii_ni\n", __FUNCTION__);
230 ntfs_error(vol->mp, "Failed to get vnode for "
238 ntfs_error(vol->mp, "Failed to map mft record of $Secure "
254 ntfs_error(vol->mp, "$SII index root attribute "
323 ntfs_error(vol
501 ntfs_default_security_id_init(ntfs_volume *vol, struct vnode_attr *va) argument
[all...]
H A Dntfs_dir.c119 ntfs_volume *vol = dir_ni->vol; local
120 mount_t mp = vol->mp;
211 vol->upcase, vol->upcase_len)) {
261 if (!NVolCaseSensitive(vol) &&
265 vol->upcase, vol->upcase_len)) {
303 vol->upcase, vol
691 ntfs_do_dirent(ntfs_volume *vol, INDEX_ENTRY *ie, struct dirent *de, uio_t uio, int *entries) argument
1057 ntfs_volume *vol; local
1517 ntfs_volume *vol = dir_ni->vol; local
1844 ntfs_volume *vol = ni->vol; local
[all...]
H A Dntfs_vnops.c120 ntfs_error(ni->vol->mp, "Failed to map buffer (error %d).",
154 ntfs_error(ni->vol->mp, "Buffer begins past "
198 ntfs_error(ni->vol->mp, "Failed to unmap buffer (error %d).",
342 ntfs_volume *vol; local
365 vol = ni->vol;
424 ntfs_error(vol->mp, "Trying to %s buffer for $MFT/$DATA which "
446 ntfs_error(vol->mp, "Failed to map buffer (error %d).",
456 else if (ni == mft_ni || ni == vol->mftmirr_ni) {
459 need_mirr_sync = (lblkno < vol
603 ntfs_volume *vol; local
1135 ntfs_volume *vol; local
1775 ntfs_volume *vol; local
2148 ntfs_volume *vol; local
4047 ntfs_volume *vol; local
4683 ntfs_volume *vol; local
5062 ntfs_volume *vol; local
5416 ntfs_volume *vol; local
5680 ntfs_volume *vol; local
7028 ntfs_volume *vol = base_ni->vol; local
7219 ntfs_volume *vol; local
7707 ntfs_volume *vol = NTFS_MP(vnode_mount(a->a_vp)); local
7946 ntfs_volume *vol = ni->vol; local
8170 ntfs_volume *vol; local
8674 ntfs_volume *vol; local
9004 ntfs_volume *vol; local
9453 ntfs_volume *vol; local
9734 ntfs_volume *vol; local
10080 ntfs_volume *vol; local
10133 ntfs_volume *vol; local
10246 ntfs_volume *vol; local
[all...]
H A Dntfs_logfile.c92 ntfs_error(ni->vol->mp, "$LogFile uses unsupported page "
101 ntfs_error(ni->vol->mp, "Found restart area in incorrect "
108 ntfs_error(ni->vol->mp, "$LogFile version %d.%d is not "
125 ntfs_error(ni->vol->mp, "$LogFile restart page specifies "
134 ntfs_error(ni->vol->mp, "$LogFile restart page specifies "
149 ntfs_error(ni->vol->mp, "$LogFile restart page specifies "
158 ntfs_error(ni->vol->mp, "$LogFile restart page is not "
198 ntfs_error(ni->vol->mp, "$LogFile restart area specifies "
212 ntfs_error(ni->vol->mp, "$LogFile restart area specifies "
227 ntfs_error(ni->vol
519 ntfs_volume *vol; local
757 ntfs_volume *vol = ni->vol; local
806 ntfs_volume *vol = ni->vol; local
[all...]
H A Dntfs_inode.c102 ntfs_volume *vol; local
107 vol = ni->vol;
109 na->name, na->name_len, NVolCaseSensitive(vol),
110 vol->upcase, vol->upcase_len))
125 * @vol: ntfs volume to which @ni belongs.
133 static inline void __ntfs_inode_init(ntfs_volume *vol, ntfs_inode *ni) argument
135 ni->vol = vol;
205 ntfs_inode_init(ntfs_volume *vol, ntfs_inode *ni, const ntfs_attr *na) argument
459 ntfs_inode_get(ntfs_volume *vol, ino64_t mft_no, const BOOL is_system, const lck_rw_type_t lock, ntfs_inode **nni, vnode_t parent_vn, struct componentname *cn) argument
1244 ntfs_volume *vol; local
1714 ntfs_volume *vol = ni->vol; local
2365 ntfs_volume *vol = ni->vol; local
2807 ntfs_volume *vol = ni->vol; local
3136 ntfs_volume *vol = ni->vol; local
3346 ntfs_volume *vol = ni->vol; local
3463 ntfs_volume *vol = ni->vol; local
4450 ntfs_volume *vol; local
[all...]
H A Dntfs_attr.c119 end_vcn = ni->allocated_size >> ni->vol->cluster_size_shift;
131 ntfs_error(ni->vol->mp, "Inode 0x%llx contains corrupt "
134 NVolSetErrors(ni->vol);
162 err = ntfs_mapping_pairs_decompress(ni->vol, a, &ni->rl);
172 ntfs_error(ni->vol->mp, "Failed (error %d).", (int)err);
265 ni->vol->cluster_size_shift;
315 err = ntfs_mapping_pairs_decompress(ni->vol, a, &ni->rl);
516 ntfs_error(ni->vol->mp, "Failed (error %lld).", (long long)lcn);
652 ntfs_error(ni->vol->mp, "Failed (error %d).", err);
797 ntfs_volume *vol local
979 ntfs_volume *vol = ni->vol; local
1343 ntfs_attr_find_in_attrdef(const ntfs_volume *vol, const ATTR_TYPE type) argument
1381 ntfs_attr_size_bounds_check(const ntfs_volume *vol, const ATTR_TYPE type, const s64 size) argument
1419 ntfs_attr_can_be_non_resident(const ntfs_volume *vol, const ATTR_TYPE type) argument
1452 ntfs_attr_can_be_resident(const ntfs_volume *vol, const ATTR_TYPE type) argument
2423 ntfs_volume *vol; local
2931 ntfs_volume *vol = ni->vol; local
4075 ntfs_volume *vol; local
5194 ntfs_volume *vol = ni->vol; local
5950 ntfs_volume *vol = ni->vol; local
7670 ntfs_volume *vol = ni->vol; local
8813 ntfs_volume *vol = ni->vol; local
[all...]
H A Dntfs_secure.h101 __private_extern__ errno_t ntfs_next_security_id_init(ntfs_volume *vol,
104 __private_extern__ errno_t ntfs_default_security_id_init(ntfs_volume *vol,
H A Dntfs_page.c132 ntfs_error(ni->vol->mp, "NULL page list passed in (error "
137 ntfs_error(ni->vol->mp, "Called for directory vnode.");
183 ntfs_warning(ni->vol->mp, "Denying access to "
209 ntfs_error(ni->vol->mp, "Failed (cluster_pagein_ext(), "
249 ntfs_error(ni->vol->mp, "ubc_upl_map() failed (error %d).",
262 ntfs_error(ni->vol->mp, "ntfs_resident_attr_read() "
275 ntfs_error(ni->vol->mp, "Failed to get raw inode "
291 ntfs_error(ni->vol->mp,
300 ntfs_error(ni->vol->mp, "ubc_upl_unmap() failed (error %d).",
333 ntfs_error(ni->vol
[all...]
H A Dntfs_index.c180 ntfs_error(ictx->idx_ni->vol->mp, "Failed to lock "
188 ntfs_error(ictx->idx_ni->vol->mp, "Failed to allocate "
198 ntfs_error(ictx->idx_ni->vol->mp, "Failed to look up "
220 ntfs_error(ictx->idx_ni->vol->mp, "Failed to map "
368 ntfs_error(ictx->idx_ni->vol->mp, "Failed to allocate index "
408 ntfs_error(ictx->idx_ni->vol->mp, "Illegal empty leaf node "
419 ntfs_error(ictx->idx_ni->vol->mp, "Corrupt index in inode 0x%llx. "
422 NVolSetErrors(ictx->idx_ni->vol);
465 ntfs_error(idx_ni->vol->mp, "Index uses unsupported collation "
473 ntfs_error(idx_ni->vol
1453 ntfs_volume *vol; local
2314 ntfs_volume *vol; local
4839 ntfs_volume *vol = idx_ni->vol; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/
H A Dmovie.tcl33 set vol [expr 64 + [%W cget -volume]]
34 if {$vol > 255} {set vol 255}
35 %W configure -volume $vol
42 set vol [expr -64 + [%W cget -volume]]
43 if {$vol < 0} {set vol 0}
44 %W configure -volume $vol
/macosx-10.10/ntfs-84/util/
H A Dntfs.util.c192 * ntfs_boot_sector_parse - parse the boot sector and store the data in @vol
193 * @vol: volume structure to initialise with data from boot sector
197 * the ntfs_volume @vol.
205 static int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b) argument
210 vol->sector_size = le16_to_cpu(b->bpb.bytes_per_sector);
211 vol->cluster_size = vol->sector_size * b->bpb.sectors_per_cluster;
212 if (vol->cluster_size < vol->sector_size)
216 vol
407 ntfs_mapping_pairs_decompress(ntfs_volume *vol, const ATTR_RECORD *a, ntfs_rl_element **runlist) argument
712 get_volume_mft_record(char *rdev, ntfs_volume *vol, MFT_RECORD **mrec) argument
884 ntfs_volume vol; local
1016 ntfs_volume vol; local
[all...]

Completed in 222 milliseconds

123