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

123456789

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dvfs.h32 #define VFS_FUNC_ARGS_VALIDUPATH const struct vol *vol, const char *name
33 #define VFS_FUNC_VARS_VALIDUPATH vol, name
35 #define VFS_FUNC_ARGS_CHOWN const struct vol *vol, const char *path, uid_t uid, gid_t gid
36 #define VFS_FUNC_VARS_CHOWN vol, path, uid, gid
38 #define VFS_FUNC_ARGS_RENAMEDIR const struct vol *vol, int dirfd, const char *oldpath, const char *newpath
39 #define VFS_FUNC_VARS_RENAMEDIR vol, dirfd, oldpath, newpath
41 #define VFS_FUNC_ARGS_DELETECURDIR const struct vol *vo
[all...]
H A Dvolinfo.h39 extern int loadvolinfo(char *path, struct volinfo *vol);
40 extern void retainvolinfo(struct volinfo *vol);
41 extern int closevolinfo(struct volinfo *vol);
42 extern int savevolinfo(const struct vol *vol, const char *Cnid_srv, const char *Cnid_port);
43 extern int vol_load_charsets(struct volinfo *vol);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/ubi/
H A Dupd.c49 * @vol: volume description object
51 * This function sets the update marker flag for volume @vol. Returns zero
54 static int set_update_marker(struct ubi_device *ubi, struct ubi_volume *vol) argument
59 dbg_gen("set update marker for volume %d", vol->vol_id);
61 if (vol->upd_marker) {
62 ubi_assert(ubi->vtbl[vol->vol_id].upd_marker);
67 memcpy(&vtbl_rec, &ubi->vtbl[vol->vol_id],
72 err = ubi_change_vtbl_record(ubi, vol->vol_id, &vtbl_rec);
73 vol->upd_marker = 1;
81 * @vol
88 clear_update_marker(struct ubi_device *ubi, struct ubi_volume *vol, long long bytes) argument
129 ubi_start_update(struct ubi_device *ubi, struct ubi_volume *vol, long long bytes) argument
181 ubi_start_leb_change(struct ubi_device *ubi, struct ubi_volume *vol, const struct ubi_leb_change_req *req) argument
234 write_leb(struct ubi_device *ubi, struct ubi_volume *vol, int lnum, void *buf, int len, int used_ebs) argument
282 ubi_more_update_data(struct ubi_device *ubi, struct ubi_volume *vol, const void __user *buf, int count) argument
397 ubi_more_leb_change_data(struct ubi_device *ubi, struct ubi_volume *vol, const void __user *buf, int count) argument
[all...]
H A Dkapi.c75 * @vol: volume description object
78 void ubi_do_get_volume_info(struct ubi_device *ubi, struct ubi_volume *vol, argument
81 vi->vol_id = vol->vol_id;
83 vi->size = vol->reserved_pebs;
84 vi->used_bytes = vol->used_bytes;
85 vi->vol_type = vol->vol_type;
86 vi->corrupted = vol->corrupted;
87 vi->upd_marker = vol->upd_marker;
88 vi->alignment = vol->alignment;
89 vi->usable_leb_size = vol
130 struct ubi_volume *vol; local
262 struct ubi_volume *vol = ubi->volumes[i]; local
328 struct ubi_volume *vol = desc->vol; local
385 struct ubi_volume *vol = desc->vol; local
450 struct ubi_volume *vol = desc->vol; local
500 struct ubi_volume *vol = desc->vol; local
544 struct ubi_volume *vol = desc->vol; local
605 struct ubi_volume *vol = desc->vol; local
642 struct ubi_volume *vol = desc->vol; local
685 struct ubi_volume *vol = desc->vol; local
[all...]
H A Dvmt.c74 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev); local
77 ubi = ubi_get_device(vol->ubi->ubi_num);
82 if (!ubi->volumes[vol->vol_id]) {
88 vol->ref_count += 1;
92 ret = sprintf(buf, "%d\n", vol->reserved_pebs);
96 if (vol->vol_type == UBI_DYNAMIC_VOLUME)
102 ret = sprintf(buf, "%s\n", vol->name);
104 ret = sprintf(buf, "%d\n", vol->corrupted);
106 ret = sprintf(buf, "%d\n", vol->alignment);
108 ret = sprintf(buf, "%d\n", vol
129 struct ubi_volume *vol = container_of(dev, struct ubi_volume, dev); local
147 volume_sysfs_init(struct ubi_device *ubi, struct ubi_volume *vol) argument
180 volume_sysfs_close(struct ubi_volume *vol) argument
207 struct ubi_volume *vol; local
406 struct ubi_volume *vol = desc->vol; local
486 struct ubi_volume *vol = desc->vol; local
624 struct ubi_volume *vol = re->desc->vol; local
648 ubi_add_volume(struct ubi_device *ubi, struct ubi_volume *vol) argument
699 ubi_free_volume(struct ubi_device *ubi, struct ubi_volume *vol) argument
721 const struct ubi_volume *vol; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/x86/
H A Daf_volume_init.c36 av_cold void ff_volume_init_x86(VolumeContext *vol) argument
39 enum AVSampleFormat sample_fmt = av_get_packed_sample_fmt(vol->sample_fmt);
42 if (EXTERNAL_SSE2(cpu_flags) && vol->volume_i < 32768) {
43 vol->scale_samples = ff_scale_samples_s16_sse2;
44 vol->samples_align = 8;
48 vol->scale_samples = ff_scale_samples_s32_sse2;
49 vol->samples_align = 4;
52 vol->scale_samples = ff_scale_samples_s32_ssse3_atom;
53 vol->samples_align = 4;
56 vol
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ntfs/
H A Dquota.h31 extern bool ntfs_mark_quotas_out_of_date(ntfs_volume *vol);
H A Dquota.c32 * @vol: ntfs volume on which to mark the quotas out of date
34 * Mark the quotas out of date on the ntfs volume @vol and return 'true' on
37 bool ntfs_mark_quotas_out_of_date(ntfs_volume *vol) argument
45 if (NVolQuotaOutOfDate(vol))
47 if (!vol->quota_ino || !vol->quota_q_ino) {
48 ntfs_error(vol->sb, "Quota inodes are not open.");
51 mutex_lock(&vol->quota_q_ino->i_mutex);
52 ictx = ntfs_index_ctx_get(NTFS_I(vol->quota_q_ino));
54 ntfs_error(vol
[all...]
H A Dsuper.c96 * @vol: ntfs volume
99 * Parse the recognized options in @opt for the ntfs volume described by @vol.
101 static bool parse_options(ntfs_volume *vol, char *opt) argument
182 ntfs_warning(vol->sb, "Ignoring obsolete option %s.",
186 ntfs_warning(vol->sb, "Option iocharset is "
197 ntfs_error(vol->sb, "NLS character set "
201 ntfs_error(vol->sb, "NLS character set %s not "
210 ntfs_warning(vol->sb, "Option utf8 is no longer "
224 ntfs_error(vol->sb, "Unrecognized mount option %s.", p);
237 ntfs_warning(vol
351 ntfs_write_volume_flags(ntfs_volume *vol, const VOLUME_FLAGS flags) argument
406 ntfs_set_volume_flags(ntfs_volume *vol, VOLUME_FLAGS flags) argument
421 ntfs_clear_volume_flags(ntfs_volume *vol, VOLUME_FLAGS flags) argument
444 ntfs_volume *vol = NTFS_SB(sb); local
728 parse_ntfs_boot_sector(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b) argument
910 ntfs_setup_allocators(ntfs_volume *vol) argument
996 load_and_init_mft_mirror(ntfs_volume *vol) argument
1048 check_mft_mirror(ntfs_volume *vol) argument
1177 load_and_check_logfile(ntfs_volume *vol, RESTART_PAGE_HEADER **rp) argument
1227 check_windows_hibernation_status(ntfs_volume *vol) argument
1326 load_and_init_quota(ntfs_volume *vol) argument
1402 load_and_init_usnjrnl(ntfs_volume *vol) argument
1555 load_and_init_attrdef(ntfs_volume *vol) argument
1620 load_and_init_upcase(ntfs_volume *vol) argument
1735 load_system_files(ntfs_volume *vol) argument
2212 ntfs_volume *vol = NTFS_SB(sb); local
2411 get_nr_free_clusters(ntfs_volume *vol) argument
2491 __get_nr_free_mft_records(ntfs_volume *vol, s64 nr_free, const pgoff_t max_index) argument
2561 ntfs_volume *vol = NTFS_SB(sb); local
2682 ntfs_volume *vol; local
[all...]
H A Dlcnalloc.c38 * @vol: mounted ntfs volume on which to free the clusters
41 * Free all the clusters described by the runlist @rl on the volume @vol. In
50 int ntfs_cluster_free_from_rl_nolock(ntfs_volume *vol, argument
53 struct inode *lcnbmp_vi = vol->lcnbmp_ino;
72 runlist_element *ntfs_cluster_alloc(ntfs_volume *vol, const VCN start_vcn, argument
94 BUG_ON(!vol);
95 lcnbmp_vi = vol->lcnbmp_ino;
107 down_write(&vol->lcnbmp_lock);
129 zone_start = vol->data1_zone_pos;
131 zone_start = vol
779 ntfs_volume *vol; local
[all...]
H A Dusnjrnl.c39 * @vol: ntfs volume on which to stamp the transaction log
41 * Stamp the transaction log ($UsnJrnl) on the ntfs volume @vol and return
47 bool ntfs_stamp_usnjrnl(ntfs_volume *vol) argument
50 if (likely(!NVolUsnJrnlStamped(vol))) {
55 page = ntfs_map_page(vol->usnjrnl_max_ino->i_mapping, 0);
57 ntfs_error(vol->sb, "Failed to read from "
70 i_size_read(vol->usnjrnl_j_ino));
72 cpu_to_sle64(i_size_read(vol->usnjrnl_j_ino));
78 NVolSetUsnJrnlStamped(vol);
H A Dlcnalloc.h43 extern runlist_element *ntfs_cluster_alloc(ntfs_volume *vol,
113 extern int ntfs_cluster_free_from_rl_nolock(ntfs_volume *vol,
118 * @vol: mounted ntfs volume on which to free the clusters
121 * Free all the clusters described by the runlist @rl on the volume @vol. In
132 static inline int ntfs_cluster_free_from_rl(ntfs_volume *vol, argument
137 down_write(&vol->lcnbmp_lock);
138 ret = ntfs_cluster_free_from_rl_nolock(vol, rl);
139 up_write(&vol->lcnbmp_lock);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dbootsect.c163 * @vol: ntfs_volume to setup
166 * Parse the ntfs bootsector @bs and setup the ntfs volume @vol with the
171 int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *bs) argument
180 vol->sector_size = le16_to_cpu(bs->bpb.bytes_per_sector);
181 vol->sector_size_bits = ffs(vol->sector_size) - 1;
182 ntfs_log_debug("SectorSize = 0x%x\n", vol->sector_size);
183 ntfs_log_debug("SectorSizeBits = %u\n", vol->sector_size_bits);
203 if (vol->dev->d_ops->seek(vol
[all...]
H A Dvolume.c222 * @vol: ntfs volume whose $MFT to load
224 * Load $MFT from @vol and setup @vol with it. After calling this function the
225 * volume @vol is ready for use by all read access functions provided by the
230 static int ntfs_mft_load(ntfs_volume *vol) argument
240 vol->mft_ni = ntfs_inode_allocate(vol);
241 mb = ntfs_malloc(vol->mft_record_size);
242 if (!vol->mft_ni || !mb) {
246 vol
410 ntfs_mftmirr_load(ntfs_volume *vol) argument
461 ntfs_volume *vol; local
606 ntfs_volume_check_logfile(ntfs_volume *vol) argument
648 ntfs_hiberfile_open(ntfs_volume *vol) argument
706 ntfs_volume_check_hiberfile(ntfs_volume *vol, int verbose) argument
786 ntfs_volume *vol; local
1157 ntfs_volume *vol; local
1204 ntfs_umount(ntfs_volume *vol, const BOOL force __attribute__((unused))) argument
1343 ntfs_version_is_supported(ntfs_volume *vol) argument
1383 ntfs_logfile_reset(ntfs_volume *vol) argument
1432 ntfs_volume_write_flags(ntfs_volume *vol, const u16 flags) argument
[all...]
H A Dlcnalloc.c67 static void ntfs_cluster_update_zone_pos(ntfs_volume *vol, u8 zone, LCN tc) argument
72 ntfs_cluster_set_zone_pos(vol->mft_lcn, vol->mft_zone_end,
73 &vol->mft_zone_pos, tc);
75 ntfs_cluster_set_zone_pos(vol->mft_zone_end, vol->nr_clusters,
76 &vol->data1_zone_pos, tc);
78 ntfs_cluster_set_zone_pos(0, vol->mft_zone_start,
79 &vol->data2_zone_pos, tc);
118 static int bitmap_writeback(ntfs_volume *vol, s6 argument
182 ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count, LCN start_lcn, const NTFS_CLUSTER_ALLOCATION_ZONES zone) argument
520 ntfs_cluster_free_from_rl(ntfs_volume *vol, runlist *rl) argument
571 ntfs_cluster_free(ntfs_volume *vol, ntfs_attr *na, VCN start_vcn, s64 count) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dmft.h32 extern int ntfs_mft_records_read(const ntfs_volume *vol, const MFT_REF mref,
37 * @vol: volume to read from
41 * Read the mft record specified by @mref from volume @vol into buffer @b.
48 * NOTE: @b has to be at least of size vol->mft_record_size.
50 static __inline__ int ntfs_mft_record_read(const ntfs_volume *vol, argument
56 ret = ntfs_mft_records_read(vol, mref, 1, b);
61 extern int ntfs_mft_record_check(const ntfs_volume *vol, const MFT_REF mref,
64 extern int ntfs_file_record_read(const ntfs_volume *vol, const MFT_REF mref,
67 extern int ntfs_mft_records_write(const ntfs_volume *vol, const MFT_REF mref,
72 * @vol
85 ntfs_mft_record_write(const ntfs_volume *vol, const MFT_REF mref, MFT_RECORD *b) argument
[all...]
H A Dlcnalloc.h41 extern runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
44 extern int ntfs_cluster_free_from_rl(ntfs_volume *vol, runlist *rl);
46 extern int ntfs_cluster_free(ntfs_volume *vol, ntfs_attr *na, VCN start_vcn,
H A Dbootsect.h39 extern int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *bs);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Ddircache.h35 extern int dircache_add(const struct vol *, struct dir *);
36 extern void dircache_remove(const struct vol *, struct dir *, int flag);
37 extern struct dir *dircache_search_by_did(const struct vol *vol, cnid_t did);
38 extern struct dir *dircache_search_by_name(const struct vol *, const struct dir *dir, char *name, int len);
H A Dmangle.h27 extern char *mangle (const struct vol *, char *, size_t, char *, cnid_t, int);
28 extern char *demangle (const struct vol *, char *, cnid_t did);
29 extern char *demangle_osx (const struct vol *, char *, cnid_t did, cnid_t *fileid);
H A Duid.h11 /* have to make sure struct vol is defined */
17 extern void set_uidgid ( const struct vol * );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_volume.c113 VolumeContext *vol = ctx->priv; local
114 return set_expr(&vol->volume_pexpr, vol->volume_expr, ctx);
119 VolumeContext *vol = ctx->priv; local
120 av_expr_free(vol->volume_pexpr);
121 av_opt_free(vol);
126 VolumeContext *vol = ctx->priv; local
156 formats = ff_make_format_list(sample_fmts[vol->precision]);
215 static av_cold void volume_init(VolumeContext *vol) argument
217 vol
251 VolumeContext *vol = ctx->priv; local
284 VolumeContext *vol = ctx->priv; local
316 VolumeContext *vol = ctx->priv; local
336 VolumeContext *vol = inlink->dst->priv; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/test/afpd/
H A Dsubtests.h43 extern int test001_add_x_dirs(const struct vol *vol, cnid_t start, cnid_t end);
44 extern int test002_rem_x_dirs(const struct vol *vol, cnid_t start, cnid_t end);
H A Dsubtests.c44 int test001_add_x_dirs(const struct vol *vol, cnid_t start, cnid_t end) argument
50 dir = dir_new(dirname, dirname, vol, DIRDID_ROOT, htonl(start), bfromcstr(vol->v_path), 0);
53 if (dircache_add(vol, dir) != 0)
60 int test002_rem_x_dirs(const struct vol *vol, cnid_t start, cnid_t end) argument
64 if ((dir = dircache_search_by_did(vol, htonl(start))))
65 if (dir_remove(vol, dir) != 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/vfs/
H A Dvfs.c51 typedef int (*rf_loop)(const struct vol *, struct dirent *, char *, void *, int);
55 for_each_adouble(const char *from, const char *name, rf_loop fn, const struct vol *vol, void *data, int flag) argument
81 if (fn && (ret = fn(vol, de, buf, data, flag))) {
107 if (!(vol->v_flags & AFPVOL_USEDOTS))
119 ad_p = vol->ad_path(path, ADFLAGS_HF );
134 static int deletecurdir_adouble_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_) argument
157 if ((err = for_each_adouble("deletecurdir", ".AppleDouble", deletecurdir_adouble_loop, vol, NULL, 1)))
163 static int adouble_setfilmode(const struct vol *vo argument
195 setdirmode_adouble_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag) argument
236 setdirowner_adouble_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag _U_) argument
499 ads_chown_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag _U_) argument
554 deletecurdir_ads_loop(const struct vol *vol, struct dirent *de, char *name, void *data _U_, int flag _U_) argument
584 ads_setfilmode_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag _U_) argument
591 ads_setfilmode(const struct vol *vol, const char * name, mode_t mode, struct stat *st) argument
676 setdirmode_ads_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag) argument
744 setdirowner_ads_loop(const struct vol *vol, struct dirent *de _U_, char *name, void *data, int flag) argument
1158 initvol_vfs(struct vol *vol) argument
[all...]

Completed in 305 milliseconds

123456789