| /src/external/bsd/am-utils/dist/amd/ |
| mntfs.c | 64 dup_mntfs(mntfs *mf) 66 if (mf->mf_refc == 0) { 67 if (mf->mf_cid) 68 untimeout(mf->mf_cid); 69 mf->mf_cid = 0; 71 mf->mf_refc++; 73 return mf; 78 init_mntfs(mntfs *mf, am_ops *ops, am_opts *mo, char *mp, char *info, char *auto_opts, char *mopts, char *remopts) 80 mf->mf_ops = ops; 81 mf->mf_fsflags = ops->nfs_fs_flags 109 mntfs *mf = ALLOC(struct mntfs); local 123 mntfs *mf; local 205 mntfs *mf = locate_mntfs(ops, mo, mp, info, auto_opts, mopts, remopts); local 265 mntfs *mf = v; local 292 mntfs *mf; local 324 mntfs *mf = (mntfs *) arg; local [all...] |
| amfs_root.c | 55 static int amfs_root_mount(am_node *mp, mntfs *mf); 90 amfs_root_mount(am_node *mp, mntfs *mf) 92 mf->mf_mount = strealloc(mf->mf_mount, pid_fsname); 93 mf->mf_private = (opaque_t) mapc_find(mf->mf_info, "", NULL, NULL); 94 mf->mf_prfree = mapc_free;
|
| amfs_nfsl.c | 59 static int amfs_nfsl_init(mntfs *mf); 60 static int amfs_nfsl_mount(am_node *mp, mntfs *mf); 61 static int amfs_nfsl_umount(am_node *mp, mntfs *mf); 62 static void amfs_nfsl_umounted(mntfs *mf); 63 static fserver *amfs_nfsl_ffserver(mntfs *mf); 137 amfs_nfsl_init(mntfs *mf) 140 if (mf->mf_flags & MFF_NFSLINK) { 142 ret = amfs_link_ops.fs_init(mf); 145 ret = nfs_ops.fs_init(mf); 156 amfs_nfsl_mount(am_node *mp, mntfs *mf) [all...] |
| amfs_auto.c | 65 static int amfs_auto_mount(am_node *mp, mntfs *mf); 100 amfs_auto_mount(am_node *mp, mntfs *mf) 117 if (mf->mf_info[0] == '.' && mf->mf_info[1] == '\0') 118 mf->mf_info = strealloc(mf->mf_info, mp->am_parent->am_al->al_mnt->mf_info); 131 if (mf->mf_fo->opt_pref) { 133 if (STREQ(mf->mf_fo->opt_pref, "null")) { 139 mp->am_pref = xstrdup(mf->mf_fo->opt_pref); 154 if (mf->mf_flags & MFF_IS_AUTOFS) [all...] |
| amfs_program.c | 54 static int amfs_program_mount(am_node *am, mntfs *mf); 55 static int amfs_program_umount(am_node *am, mntfs *mf); 56 static int amfs_program_init(mntfs *mf); 111 amfs_program_init(mntfs *mf) 114 if (mf->mf_private != NULL) 117 if (mf->mf_fo == NULL) 121 if (mf->mf_fo->opt_unmount != NULL) 122 mf->mf_private = (opaque_t) xstrdup(mf->mf_fo->opt_unmount); 124 mf->mf_private = (opaque_t) xstrdup(mf->mf_fo->opt_umount) [all...] |
| amfs_linkx.c | 53 static int amfs_linkx_mount(am_node *mp, mntfs *mf); 54 static int amfs_linkx_umount(am_node *mp, mntfs *mf); 82 amfs_linkx_mount(am_node *mp, mntfs *mf) 93 ln = mf->mf_mount; 108 amfs_linkx_umount(am_node *mp, mntfs *mf)
|
| ops_ext.c | 54 static int ext2_mount(am_node *am, mntfs *mf); 55 static int ext3_mount(am_node *am, mntfs *mf); 56 static int ext4_mount(am_node *am, mntfs *mf); 57 static int ext_umount(am_node *am, mntfs *mf); 184 ext_mount(am_node *am, mntfs *mf, char *mount_type, 187 int on_autofs = mf->mf_flags & MFF_ON_AUTOFS; 190 error = mount_ext(mf->mf_mount, mf->mf_info, mf->mf_mopts, on_autofs, 202 ext2_mount(am_node *am, mntfs *mf) [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/lz/ |
| lz_encoder.c | 31 lzma_mf mf; member in struct:__anon24625 40 /// mf->buffer is a sliding input window, which keeps mf->keep_size_before 46 move_window(lzma_mf *mf) 49 // like LZMA use the lowest bits of mf->read_pos to know the 52 assert(mf->read_pos > mf->keep_size_before); 54 = (mf->read_pos - mf->keep_size_before) & ~UINT32_C(15); 56 assert(mf->write_pos > move_offset) 467 lzma_mf mf = { local [all...] |
| lz_encoder_mf.c | 23 lzma_mf_find(lzma_mf *mf, uint32_t *count_ptr, lzma_match *matches) 28 const uint32_t count = mf->find(mf, matches); 38 assert(matches[i].len <= mf->nice_len); 39 assert(matches[i].dist < mf->read_pos); 40 assert(memcmp(mf_ptr(mf) - 1, 41 mf_ptr(mf) - matches[i].dist - 2, 52 if (len_best == mf->nice_len) { 57 uint32_t limit = mf_avail(mf) + 1; 58 if (limit > mf->match_len_max [all...] |
| lz_encoder.h | 92 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, 221 mf_ptr(const lzma_mf *mf) 223 return mf->buffer + mf->read_pos; 229 mf_avail(const lzma_mf *mf) 231 return mf->write_pos - mf->read_pos; 238 mf_unencoded(const lzma_mf *mf) [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| msgfmt-6 | 11 tmpfiles="$tmpfiles mf-6.po" 12 cat <<EOF > mf-6.po 25 tmpfiles="$tmpfiles mf-6.mo core *.core" 27 ${MSGFMT} --check -o mf-6.mo mf-6.po 2>/dev/null
|
| msgfmt-12 | 8 tmpfiles="$tmpfiles mf-12.po" 9 cat <<\EOF > mf-12.po 25 tmpfiles="$tmpfiles mf-12.mo" 27 ${MSGFMT} -o mf-12.mo mf-12.po 30 tmpfiles="$tmpfiles mf-12.out" 32 ${MSGUNFMT} -o mf-12.out mf-12.mo 35 tmpfiles="$tmpfiles mf-12.ok" 36 cat <<\EOF > mf-12.o [all...] |
| msgfmt-16 | 8 tmpfiles="$tmpfiles mf-16.po" 9 cat <<\EOF > mf-16.po 47 tmpfiles="$tmpfiles mf-16.mo" 49 ${MSGFMT} -o mf-16.mo mf-16.po 52 tmpfiles="$tmpfiles mf-16.out" 54 ${MSGUNFMT} -o mf-16.out mf-16.mo 57 tmpfiles="$tmpfiles mf-16.ok" 58 cat <<\EOF > mf-16.o [all...] |
| msgfmt-7 | 8 tmpfiles="$tmpfiles mf-test7.in1" 9 cat <<EOF > mf-test7.in1 29 tmpfiles="$tmpfiles mf-test7.err" 32 ${MSGFMT} --verbose --check mf-test7.in1 -o /dev/null \ 33 2>&1 | grep -v '^==' > mf-test7.err 35 tmpfiles="$tmpfiles mf-test7.ok" 36 cat << EOF > mf-test7.ok 37 mf-test7.in1:17: duplicate message definition... 38 mf-test7.in1:16: ...this is the location of the first definition 43 ${DIFF} mf-test7.ok mf-test7.er [all...] |
| msgfmt-8 | 8 tmpfiles="$tmpfiles mf-test8.in1" 9 cat <<EOF > mf-test8.in1 29 tmpfiles="$tmpfiles mf-test8.err" 32 ${MSGFMT} --verbose --check mf-test8.in1 -o /dev/null \ 33 2>&1 | grep -v '^==' > mf-test8.err 35 tmpfiles="$tmpfiles mf-test8.ok" 36 cat << EOF > mf-test8.ok 37 mf-test8.in1:17: duplicate message definition... 38 mf-test8.in1:16: ...this is the location of the first definition 43 ${DIFF} mf-test8.ok mf-test8.er [all...] |
| msgfmt-9 | 8 tmpfiles="$tmpfiles mf-test9.in1" 9 cat <<EOF > mf-test9.in1 32 tmpfiles="$tmpfiles mf-test9.err" 35 ${MSGFMT} --verbose --check mf-test9.in1 -o /dev/null \ 36 2>&1 | grep -v '^==' > mf-test9.err 38 tmpfiles="$tmpfiles mf-test9.ok" 39 cat << EOF > mf-test9.ok 40 mf-test9.in1:17: duplicate message definition... 41 mf-test9.in1:15: ...this is the location of the first definition 46 ${DIFF} mf-test9.ok mf-test9.er [all...] |
| msgfmt-10 | 8 tmpfiles="$tmpfiles mf-test10.po1" 9 cat <<\EOF > mf-test10.po1 41 ${MSGFMT} --check -o /dev/null mf-test10.po1 44 tmpfiles="$tmpfiles mf-test10.po2" 45 cat <<\EOF > mf-test10.po2 69 tmpfiles="$tmpfiles mf-test10.err" 72 ${MSGFMT} --check -o /dev/null mf-test10.po2 \ 73 2>&1 | grep -v '^==' > mf-test10.err 75 tmpfiles="$tmpfiles mf-test10.ok" 76 cat << EOF > mf-test10.o [all...] |
| msgfmt-11 | 8 tmpfiles="$tmpfiles mf-11.po" 9 cat <<\EOF > mf-11.po 25 tmpfiles="$tmpfiles mf-11.mo core *.core" 27 ${MSGFMT} --check -o mf-11.mo mf-11.po 2>/dev/null
|
| msgfmt-13 | 8 tmpfiles="$tmpfiles mf-test13.po" 9 cat <<\EOF >mf-test13.po 31 tmpfiles="$tmpfiles mf-test13.mo" 33 ${MSGFMT} mf-test13.po -o mf-test13.mo 2>/dev/null
|
| msgfmt-14 | 8 tmpfiles="$tmpfiles mf-14.po" 9 cat <<\EOF > mf-14.po 54 tmpfiles="$tmpfiles mf-14.mo" 56 ${MSGFMT} -o mf-14.mo mf-14.po 59 tmpfiles="$tmpfiles mf-14.out" 61 ${MSGUNFMT} -o mf-14.out mf-14.mo 64 tmpfiles="$tmpfiles mf-14.ok" 65 cat <<\EOF > mf-14.o [all...] |
| msgfmt-15 | 15 tmpfiles="$tmpfiles mf-15.po1" 16 cat <<\EOF > mf-15.po1 42 ${MSGFMT} --check -o /dev/null mf-15.po1 45 tmpfiles="$tmpfiles mf-15.po2" 46 cat <<\EOF > mf-15.po2 72 ${MSGFMT} --check -o /dev/null mf-15.po2 2>/dev/null 75 tmpfiles="$tmpfiles mf-15.po3" 76 cat <<\EOF > mf-15.po3 102 ${MSGFMT} --check -o /dev/null mf-15.po3 105 tmpfiles="$tmpfiles mf-15.po4 [all...] |
| /src/games/sail/ |
| pl_2.c | 55 if (mf->readyL & R_LOADING) { 56 if (mf->readyL & R_DOUBLE) 57 mf->readyL = R_LOADING; 59 mf->readyL = R_LOADED; 61 if (mf->readyR & R_LOADING) { 62 if (mf->readyR & R_DOUBLE) 63 mf->readyR = R_LOADING; 65 mf->readyR = R_LOADED; 79 if (mf->FS && (!mc->rig1 || windspeed == 6)) 81 if (mf->FS == 1 [all...] |
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| mf_4.h | 22 dns_name_t mf; member in struct:dns_rdata_mf
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| mf_4.h | 23 dns_name_t mf; member in struct:dns_rdata_mf
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| with-mf.exp | 20 standard_testfile with-mf-main.c with-mf-inc.c
|