Searched refs:mf (Results 1 - 25 of 187) sorted by relevance

12345678

/freebsd-9.3-release/contrib/amd/amd/
H A Dmntfs.c56 dup_mntfs(mntfs *mf) argument
58 if (mf->mf_refc == 0) {
59 if (mf->mf_cid)
60 untimeout(mf->mf_cid);
61 mf->mf_cid = 0;
63 mf->mf_refc++;
65 return mf;
70 init_mntfs(mntfs *mf, am_ops *ops, am_opts *mo, char *mp, char *info, char *auto_opts, char *mopts, char *remopts) argument
72 mf->mf_ops = ops;
73 mf
98 mntfs *mf = ALLOC(struct mntfs); local
112 mntfs *mf; local
194 mntfs *mf = locate_mntfs(ops, mo, mp, info, auto_opts, mopts, remopts); local
210 uninit_mntfs(mntfs *mf) argument
245 mntfs *mf = v; local
262 mntfs *mf; local
277 mntfs *mf = (mntfs *) arg; local
338 realloc_mntfs(mntfs *mf, am_ops *ops, am_opts *mo, char *mp, char *info, char *auto_opts, char *mopts, char *remopts) argument
[all...]
H A Damfs_nfsl.c61 static int amfs_nfsl_init(mntfs *mf);
62 static int amfs_nfsl_mount(am_node *mp, mntfs *mf);
63 static int amfs_nfsl_umount(am_node *mp, mntfs *mf);
64 static void amfs_nfsl_umounted(mntfs *mf);
65 static fserver *amfs_nfsl_ffserver(mntfs *mf);
138 amfs_nfsl_init(mntfs *mf) argument
141 if (mf->mf_flags & MFF_NFSLINK) {
143 ret = amfs_link_ops.fs_init(mf);
146 ret = nfs_ops.fs_init(mf);
157 amfs_nfsl_mount(am_node *mp, mntfs *mf) argument
176 amfs_nfsl_umount(am_node *mp, mntfs *mf) argument
197 amfs_nfsl_umounted(mntfs *mf) argument
214 amfs_nfsl_ffserver(mntfs *mf) argument
[all...]
H A Damfs_root.c57 static int amfs_root_mount(am_node *mp, mntfs *mf);
92 amfs_root_mount(am_node *mp, mntfs *mf) argument
94 mf->mf_mount = strealloc(mf->mf_mount, pid_fsname);
95 mf->mf_private = (opaque_t) mapc_find(mf->mf_info, "", NULL);
96 mf->mf_prfree = mapc_free;
H A Damfs_auto.c67 static int amfs_auto_mount(am_node *mp, mntfs *mf);
102 amfs_auto_mount(am_node *mp, mntfs *mf) argument
117 if (mf->mf_info[0] == '.' && mf->mf_info[1] == '\0')
118 mf->mf_info = strealloc(mf->mf_info, mp->am_parent->am_mnt->mf_info);
131 if (mf->mf_fo->opt_pref) {
133 if (STREQ(mf->mf_fo->opt_pref, "null")) {
139 mp->am_pref = strdup(mf->mf_fo->opt_pref);
154 if (mf
[all...]
H A Damfs_linkx.c55 static int amfs_linkx_mount(am_node *mp, mntfs *mf);
56 static int amfs_linkx_umount(am_node *mp, mntfs *mf);
84 amfs_linkx_mount(am_node *mp, mntfs *mf) argument
95 ln = mf->mf_mount;
110 amfs_linkx_umount(am_node *mp, mntfs *mf) argument
H A Damfs_program.c56 static int amfs_program_mount(am_node *am, mntfs *mf);
57 static int amfs_program_umount(am_node *am, mntfs *mf);
58 static int amfs_program_init(mntfs *mf);
113 amfs_program_init(mntfs *mf) argument
116 if (mf->mf_private != NULL)
120 if (mf->mf_fo->opt_unmount != NULL)
121 mf->mf_private = (opaque_t) strdup(mf->mf_fo->opt_unmount);
123 mf->mf_private = (opaque_t) strdup(mf
195 amfs_program_mount(am_node *am, mntfs *mf) argument
202 amfs_program_umount(am_node *am, mntfs *mf) argument
[all...]
H A Dautil.c163 mntfs *mf = mp->am_mnt; local
167 if (mf && ((mp->am_flags & AMF_ROOT) ||
168 (mf->mf_flags & (MFF_MOUNTING | MFF_UNMOUNTING)))) {
169 if (mf->mf_flags & MFF_UNMOUNTING)
189 mf_mounted(mntfs *mf, bool_t call_free_opts) argument
192 int wasmounted = mf->mf_flags & MFF_MOUNTED;
200 mf->mf_flags |= MFF_MOUNTED;
201 mf->mf_error = 0;
206 if (mf->mf_ops->mounted)
207 mf
252 mntfs *mf = mp->am_mnt; local
390 amfs_mkcacheref(mntfs *mf) argument
412 mntfs *mf; local
447 amfs_mount(am_node *mp, mntfs *mf, char *opts) argument
659 mntfs *mf = mp->am_mnt; local
[all...]
H A Dops_efs.c56 static int efs_mount(am_node *am, mntfs *mf);
57 static int efs_umount(am_node *am, mntfs *mf);
149 efs_mount(am_node *am, mntfs *mf) argument
151 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS;
154 error = mount_efs(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs);
166 efs_umount(am_node *am, mntfs *mf) argument
168 int unmount_flags = (mf->mf_flags & MFF_ON_AUTOFS) ? AMU_UMOUNT_AUTOFS : 0;
170 return UMOUNT_FS(mf
[all...]
H A Dops_lofs.c56 static int lofs_mount(am_node *am, mntfs *mf);
57 static int lofs_umount(am_node *am, mntfs *mf);
138 lofs_mount(am_node *am, mntfs *mf) argument
140 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS;
143 error = mount_lofs(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs);
154 lofs_umount(am_node *am, mntfs *mf) argument
156 int unmount_flags = (mf->mf_flags & MFF_ON_AUTOFS) ? AMU_UMOUNT_AUTOFS : 0;
158 return UMOUNT_FS(mf
[all...]
H A Dops_ufs.c56 static int ufs_mount(am_node *am, mntfs *mf);
57 static int ufs_umount(am_node *am, mntfs *mf);
158 ufs_mount(am_node *am, mntfs *mf) argument
160 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS;
163 error = mount_ufs(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs);
175 ufs_umount(am_node *am, mntfs *mf) argument
177 int unmount_flags = (mf->mf_flags & MFF_ON_AUTOFS) ? AMU_UMOUNT_AUTOFS : 0;
179 return UMOUNT_FS(mf
[all...]
H A Dops_xfs.c56 static int xfs_mount(am_node *am, mntfs *mf);
57 static int xfs_umount(am_node *am, mntfs *mf);
149 xfs_mount(am_node *am, mntfs *mf) argument
151 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS;
154 error = mount_xfs(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs);
166 xfs_umount(am_node *am, mntfs *mf) argument
168 int unmount_flags = (mf->mf_flags & MFF_ON_AUTOFS) ? AMU_UMOUNT_AUTOFS : 0;
170 return UMOUNT_FS(mf
[all...]
H A Dops_TEMPLATE.c63 static int foofs_init(mntfs *mf);
64 static int foofs_mount(am_node *mp, mntfs *mf);
65 static int foofs_umount(am_node *mp, mntfs *mf);
69 static void foofs_mounted(am_node *am, mntfs *mf);
70 static void foofs_umounted(am_node *mp, mntfs *mf);
71 static fserver *foofs_ffserver(mntfs *mf);
123 foofs_init(mntfs *mf) argument
155 foofs_fmount(mntfs *mf) argument
187 foofs_fumount(mntfs *mf) argument
260 foofs_mounted(mntfs *mf) argument
288 foofs_ffserver(mntfs *mf) argument
300 foofs_get_wchan(mntfs *mf) argument
[all...]
H A Dops_cachefs.c56 static int cachefs_init(mntfs *mf);
57 static int cachefs_mount(am_node *am, mntfs *mf);
58 static int cachefs_umount(am_node *am, mntfs *mf);
111 cachefs_init(mntfs *mf) argument
116 if (!mf->mf_private) {
117 mf->mf_private = (voidp) strdup(mf->mf_fo->opt_cachedir);
118 mf->mf_prfree = (void (*)(voidp)) free;
210 cachefs_mount(am_node *am, mntfs *mf) argument
212 int on_autofs = mf
235 cachefs_umount(am_node *am, mntfs *mf) argument
[all...]
H A Damfs_generic.c83 mntfs **mf; /* Current mntfs */ member in struct:continuation
91 static mntfs *amfs_lookup_one_mntfs(am_node *new_mp, mntfs *mf, char *ivec,
98 static char *amfs_parse_defaults(am_node *mp, mntfs *mf, char *def_opts);
110 mntfs *mf; local
173 mf = new_mp->am_mnt;
174 if (mf->mf_error < 0)
181 if (mf->mf_flags & MFF_ERROR) {
182 error = mf->mf_error;
185 if (!(mf->mf_flags & MFF_MOUNTED) || (mf
253 amfs_lookup_one_mntfs(am_node *new_mp, mntfs *mf, char *ivec, char *def_opts, char *pfname) argument
351 mntfs *mf, **mf_array; local
494 mntfs *mf = mp->am_mnt; local
693 mntfs *mf; /* Current mntfs */ local
951 amfs_parse_defaults(am_node *mp, mntfs *mf, char *def_opts) argument
1212 amfs_generic_mounted(mntfs *mf) argument
1222 amfs_generic_umount(am_node *mp, mntfs *mf) argument
[all...]
H A Damfs_error.c59 static int amfs_error_mount(am_node *am, mntfs *mf);
60 static int amfs_error_umount(am_node *am, mntfs *mf);
100 amfs_error_mount(am_node *am, mntfs *mf) argument
107 amfs_error_umount(am_node *am, mntfs *mf) argument
H A Damfs_link.c55 static int amfs_link_mount(am_node *mp, mntfs *mf);
56 static int amfs_link_umount(am_node *mp, mntfs *mf);
123 amfs_link_mount(am_node *mp, mntfs *mf) argument
130 amfs_link_umount(am_node *mp, mntfs *mf) argument
/freebsd-9.3-release/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c29 lzma_mf mf; member in struct:lzma_coder_s
38 /// mf->buffer is a sliding input window, which keeps mf->keep_size_before
44 move_window(lzma_mf *mf) argument
47 // like LZMA use the lowest bits of mf->read_pos to know the
50 assert(mf->read_pos > mf->keep_size_before);
52 = (mf->read_pos - mf->keep_size_before) & ~UINT32_C(15);
54 assert(mf
182 lz_encoder_prepare(lzma_mf *mf, lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
363 lz_encoder_init(lzma_mf *mf, lzma_allocator *allocator, const lzma_lz_options *lz_options) argument
445 lzma_mf mf = { local
[all...]
H A Dlz_encoder_mf.c22 lzma_mf_find(lzma_mf *mf, uint32_t *count_ptr, lzma_match *matches) argument
27 const uint32_t count = mf->find(mf, matches);
37 assert(matches[i].len <= mf->nice_len);
38 assert(matches[i].dist < mf->read_pos);
39 assert(memcmp(mf_ptr(mf) - 1,
40 mf_ptr(mf) - matches[i].dist - 2,
51 if (len_best == mf->nice_len) {
56 uint32_t limit = mf_avail(mf) + 1;
57 if (limit > mf
109 normalize(lzma_mf *mf) argument
148 move_pos(lzma_mf *mf) argument
176 move_pending(lzma_mf *mf) argument
306 lzma_mf_hc3_find(lzma_mf *mf, lzma_match *matches) argument
340 lzma_mf_hc3_skip(lzma_mf *mf, uint32_t amount) argument
368 lzma_mf_hc4_find(lzma_mf *mf, lzma_match *matches) argument
420 lzma_mf_hc4_skip(lzma_mf *mf, uint32_t amount) argument
594 lzma_mf_bt2_find(lzma_mf *mf, lzma_match *matches) argument
608 lzma_mf_bt2_skip(lzma_mf *mf, uint32_t amount) argument
627 lzma_mf_bt3_find(lzma_mf *mf, lzma_match *matches) argument
661 lzma_mf_bt3_skip(lzma_mf *mf, uint32_t amount) argument
683 lzma_mf_bt4_find(lzma_mf *mf, lzma_match *matches) argument
735 lzma_mf_bt4_skip(lzma_mf *mf, uint32_t amount) argument
[all...]
H A Dlz_encoder.h92 uint32_t (*find)(lzma_mf *mf, lzma_match *matches);
97 void (*skip)(lzma_mf *mf, uint32_t num);
198 lzma_mf *restrict mf, uint8_t *restrict out,
222 mf_ptr(const lzma_mf *mf) argument
224 return mf->buffer + mf->read_pos;
230 mf_avail(const lzma_mf *mf) argument
232 return mf->write_pos - mf->read_pos;
239 mf_unencoded(const lzma_mf *mf) argument
253 mf_position(const lzma_mf *mf) argument
268 mf_skip(lzma_mf *mf, uint32_t amount) argument
280 mf_read(lzma_mf *mf, uint8_t *out, size_t *out_pos, size_t out_size, size_t *left) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A DMakefile.am27 nobase_libsubinclude_HEADERS = mf-runtime.h
31 mf-runtime.c \
32 mf-heuristics.c \
33 mf-hooks1.c \
34 mf-hooks2.c
42 pth/mf-runtime.lo: mf-runtime.c mf-runtime.h mf-impl.h
43 $(LTCOMPILE) -DLIBMUDFLAPTH -c $(srcdir)/mf
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dmf_4.h27 dns_name_t mf; member in struct:dns_rdata_mf
/freebsd-9.3-release/sys/fs/msdosfs/
H A Dmsdosfs_fileno.c89 struct msdosfs_fileno *mf, *next; local
91 for (mf = RB_MIN(msdosfs_filenotree, &pmp->pm_filenos); mf != NULL;
92 mf = next) {
93 next = RB_NEXT(msdosfs_filenotree, &pmp->pm_filenos, mf);
94 RB_REMOVE(msdosfs_filenotree, &pmp->pm_filenos, mf);
95 free(mf, M_MSDOSFSFILENO);
106 struct msdosfs_fileno key, *mf, *tmf; local
118 mf = RB_FIND(msdosfs_filenotree, &pmp->pm_filenos, &key);
119 if (mf !
[all...]
/freebsd-9.3-release/contrib/ntp/clockstuff/
H A DMakefile.am15 include $(top_srcdir)/sntp/check-libntp.mf
16 include $(top_srcdir)/depsver.mf
17 include $(top_srcdir)/includes.mf
/freebsd-9.3-release/contrib/ntp/adjtimed/
H A DMakefile.am18 include $(top_srcdir)/bincheck.mf
19 include $(top_srcdir)/sntp/check-libntp.mf
20 include $(top_srcdir)/depsver.mf
21 include $(top_srcdir)/includes.mf
/freebsd-9.3-release/contrib/ntp/parseutil/
H A DMakefile.am23 include $(top_srcdir)/depsver.mf
24 include $(top_srcdir)/includes.mf

Completed in 120 milliseconds

12345678