Searched refs:fs (Results 26 - 50 of 1072) sorted by relevance

1234567891011>>

/freebsd-11-stable/sbin/nandfs/
H A Drmsnap.c42 #include <fs/nandfs/nandfs_fs.h>
58 struct nandfs fs; local
74 nandfs_init(&fs, argv[1]);
75 error = nandfs_open(&fs);
77 fprintf(stderr, "nandfs_open: %s\n", nandfs_errmsg(&fs));
81 error = nandfs_delete_snap(&fs, cpno);
83 fprintf(stderr, "nandfs_delete_snap: %s\n", nandfs_errmsg(&fs));
86 nandfs_close(&fs);
87 nandfs_destroy(&fs);
/freebsd-11-stable/contrib/lua/src/
H A Dlcode.c64 void luaK_nil (FuncState *fs, int from, int n) { argument
67 if (fs->pc > fs->lasttarget) { /* no jumps to current position? */
68 previous = &fs->f->code[fs->pc-1];
82 luaK_codeABC(fs, OP_LOADNIL, from, n - 1, 0); /* else no optimization */
90 static int getjump (FuncState *fs, int pc) { argument
91 int offset = GETARG_sBx(fs->f->code[pc]);
103 static void fixjump (FuncState *fs, int pc, int dest) { argument
104 Instruction *jmp = &fs
116 luaK_concat(FuncState *fs, int *l1, int l2) argument
136 luaK_jump(FuncState *fs) argument
149 luaK_ret(FuncState *fs, int first, int nret) argument
158 condjump(FuncState *fs, OpCode op, int A, int B, int C) argument
168 luaK_getlabel(FuncState *fs) argument
179 getjumpcontrol(FuncState *fs, int pc) argument
195 patchtestreg(FuncState *fs, int node, int reg) argument
213 removevalues(FuncState *fs, int list) argument
224 patchlistaux(FuncState *fs, int list, int vtarget, int reg, int dtarget) argument
242 dischargejpc(FuncState *fs) argument
252 luaK_patchtohere(FuncState *fs, int list) argument
263 luaK_patchlist(FuncState *fs, int list, int target) argument
278 luaK_patchclose(FuncState *fs, int list, int level) argument
293 luaK_code(FuncState *fs, Instruction i) argument
312 luaK_codeABC(FuncState *fs, OpCode o, int a, int b, int c) argument
324 luaK_codeABx(FuncState *fs, OpCode o, int a, unsigned int bc) argument
335 codeextraarg(FuncState *fs, int a) argument
346 luaK_codek(FuncState *fs, int reg, int k) argument
361 luaK_checkstack(FuncState *fs, int n) argument
375 luaK_reserveregs(FuncState *fs, int n) argument
386 freereg(FuncState *fs, int reg) argument
397 freeexp(FuncState *fs, expdesc *e) argument
407 freeexps(FuncState *fs, expdesc *e1, expdesc *e2) argument
428 addk(FuncState *fs, TValue *key, TValue *v) argument
458 luaK_stringK(FuncState *fs, TString *s) argument
471 luaK_intK(FuncState *fs, lua_Integer n) argument
481 luaK_numberK(FuncState *fs, lua_Number r) argument
491 boolK(FuncState *fs, int b) argument
501 nilK(FuncState *fs) argument
515 luaK_setreturns(FuncState *fs, expdesc *e, int nresults) argument
539 luaK_setoneret(FuncState *fs, expdesc *e) argument
556 luaK_dischargevars(FuncState *fs, expdesc *e) argument
595 discharge2reg(FuncState *fs, expdesc *e, int reg) argument
641 discharge2anyreg(FuncState *fs, expdesc *e) argument
649 code_loadbool(FuncState *fs, int A, int b, int jump) argument
659 need_value(FuncState *fs, int list) argument
675 exp2reg(FuncState *fs, expdesc *e, int reg) argument
703 luaK_exp2nextreg(FuncState *fs, expdesc *e) argument
715 luaK_exp2anyreg(FuncState *fs, expdesc *e) argument
734 luaK_exp2anyregup(FuncState *fs, expdesc *e) argument
744 luaK_exp2val(FuncState *fs, expdesc *e) argument
758 luaK_exp2RK(FuncState *fs, expdesc *e) argument
782 luaK_storevar(FuncState *fs, expdesc *var, expdesc *ex) argument
809 luaK_self(FuncState *fs, expdesc *e, expdesc *key) argument
825 negatecondition(FuncState *fs, expdesc *e) argument
839 jumponcond(FuncState *fs, expdesc *e, int cond) argument
857 luaK_goiftrue(FuncState *fs, expdesc *e) argument
884 luaK_goiffalse(FuncState *fs, expdesc *e) argument
910 codenot(FuncState *fs, expdesc *e) argument
946 luaK_indexed(FuncState *fs, expdesc *t, expdesc *k) argument
978 constfolding(FuncState *fs, int op, expdesc *e1, const expdesc *e2) argument
1004 codeunexpval(FuncState *fs, OpCode op, expdesc *e, int line) argument
1022 codebinexpval(FuncState *fs, OpCode op, expdesc *e1, expdesc *e2, int line) argument
1037 codecomp(FuncState *fs, BinOpr opr, expdesc *e1, expdesc *e2) argument
1066 luaK_prefix(FuncState *fs, UnOpr op, expdesc *e, int line) argument
1086 luaK_infix(FuncState *fs, BinOpr op, expdesc *v) argument
1124 luaK_posfix(FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2, int line) argument
1177 luaK_fixline(FuncState *fs, int line) argument
1189 luaK_setlist(FuncState *fs, int base, int nelems, int tostore) argument
[all...]
H A Dlparser.c79 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { argument
80 lua_State *L = fs->ls->L;
82 int line = fs->f->linedefined;
88 luaX_syntaxerror(fs->ls, msg);
92 static void checklimit (FuncState *fs, int v, int l, const char *what) { argument
93 if (v > l) errorlimit(fs, l, what);
152 init_exp(e, VK, luaK_stringK(ls->fs, s));
162 FuncState *fs = ls->fs; local
163 Proto *f = fs
176 FuncState *fs = ls->fs; local
195 getlocvar(FuncState *fs, int i) argument
203 FuncState *fs = ls->fs; local
211 removevars(FuncState *fs, int tolevel) argument
218 searchupvalue(FuncState *fs, TString *name) argument
228 newupvalue(FuncState *fs, TString *name, expdesc *v) argument
244 searchvar(FuncState *fs, TString *n) argument
258 markupval(FuncState *fs, int level) argument
270 singlevaraux(FuncState *fs, TString *n, expdesc *var, int base) argument
297 FuncState *fs = ls->fs; local
310 FuncState *fs = ls->fs; local
343 FuncState *fs = ls->fs; local
421 movegotosout(FuncState *fs, BlockCnt *bl) argument
439 enterblock(FuncState *fs, BlockCnt *bl, lu_byte isloop) argument
473 leaveblock(FuncState *fs) argument
502 FuncState *fs = ls->fs; local
523 FuncState *fs = ls->fs->prev; local
529 open_func(LexState *ls, FuncState *fs, BlockCnt *bl) argument
554 FuncState *fs = ls->fs; local
612 FuncState *fs = ls->fs; local
648 FuncState *fs = ls->fs; local
667 closelistfield(FuncState *fs, struct ConsControl *cc) argument
678 lastlistfield(FuncState *fs, struct ConsControl *cc) argument
727 FuncState *fs = ls->fs; local
755 FuncState *fs = ls->fs; local
818 FuncState *fs = ls->fs; local
896 FuncState *fs = ls->fs; local
962 FuncState *fs = ls->fs; local
1095 FuncState *fs = ls->fs; local
1120 FuncState *fs = ls->fs; local
1203 checkrepeated(FuncState *fs, Labellist *ll, TString *label) argument
1225 FuncState *fs = ls->fs; local
1243 FuncState *fs = ls->fs; local
1263 FuncState *fs = ls->fs; local
1294 FuncState *fs = ls->fs; local
1319 FuncState *fs = ls->fs; local
1341 FuncState *fs = ls->fs; local
1366 FuncState *fs = ls->fs; local
1385 FuncState *fs = ls->fs; local
1419 FuncState *fs = ls->fs; local
1433 FuncState *fs = ls->fs; local
1490 FuncState *fs = ls->fs; local
1506 FuncState *fs = ls->fs; local
1612 mainfunc(LexState *ls, FuncState *fs) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dutil.h71 svn_fs_fs__is_packed_rev(svn_fs_t *fs,
76 svn_fs_fs__is_packed_revprop(svn_fs_t *fs,
82 svn_fs_fs__packed_base_rev(svn_fs_t *fs,
89 svn_fs_fs__path_rev_shard(svn_fs_t *fs,
97 svn_fs_fs__path_rev(svn_fs_t *fs,
106 svn_fs_fs__path_rev_packed(svn_fs_t *fs,
115 svn_fs_fs__path_txn_current(svn_fs_t *fs,
122 svn_fs_fs__path_txn_current_lock(svn_fs_t *fs,
129 svn_fs_fs__path_lock(svn_fs_t *fs,
136 svn_fs_fs__path_pack_lock(svn_fs_t *fs,
[all...]
H A Dcached_data.h29 #include "fs.h"
42 svn_fs_fs__fixup_expanded_size(svn_fs_t *fs,
50 svn_fs_t *fs,
59 svn_fs_t *fs,
70 svn_fs_t *fs,
82 svn_fs_t *fs,
92 svn_fs_t *fs,
103 svn_fs_t *fs,
117 svn_fs_t *fs,
128 svn_fs_t *fs,
[all...]
H A Dfs.c0 /* fs.c --- creating, opening and closing filesystems
35 #include "fs.h"
52 #include "../libsvn_fs/fs-loader.h"
65 fs_serialized_init(svn_fs_t *fs, apr_pool_t *common_pool, apr_pool_t *pool)
67 fs_fs_data_t *ffd = fs->fsap_data;
95 SVN_ERR_ASSERT(fs->uuid);
99 fs->uuid, ":", ffd->instance_id, SVN_VA_NULL);
140 svn_fs_fs__initialize_shared_data(svn_fs_t *fs,
146 fs_serialized_init(fs, common_pool, pool));
155 fs_refresh_revprops(svn_fs_t *fs,
64 fs_serialized_init(svn_fs_t *fs, apr_pool_t *common_pool, apr_pool_t *pool) argument
139 svn_fs_fs__initialize_shared_data(svn_fs_t *fs, svn_mutex__t *common_pool_lock, apr_pool_t *pool, apr_pool_t *common_pool) argument
153 fs_refresh_revprops(svn_fs_t *fs, apr_pool_t *scratch_pool) argument
165 fs_set_errcall(svn_fs_t *fs, void (*db_errcall_fcn)(const char *errpfx, char *msg)) argument
173 svn_fs_t *fs; member in struct:fs_freeze_baton_t
207 fs_freeze(svn_fs_t *fs, svn_fs_freeze_func_t freeze_func, void *freeze_baton, apr_pool_t *pool) argument
230 fs_info(const void **fsfs_info, svn_fs_t *fs, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
248 fs_set_uuid(svn_fs_t *fs, const char *uuid, apr_pool_t *pool) argument
259 fs_ioctl(svn_fs_t *fs, svn_fs_ioctl_code_t ctlcode, void *input_void, void **output_p, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
369 initialize_fs_struct(svn_fs_t *fs) argument
384 uninitialize_fs_struct(svn_fs_t *fs) argument
395 fs_create(svn_fs_t *fs, const char *path, svn_mutex__t *common_pool_lock, apr_pool_t *scratch_pool, apr_pool_t *common_pool) argument
424 fs_open(svn_fs_t *fs, const char *path, svn_mutex__t *common_pool_lock, apr_pool_t *scratch_pool, apr_pool_t *common_pool) argument
451 fs_open_for_recovery(svn_fs_t *fs, const char *path, svn_mutex__t *common_pool_lock, apr_pool_t *pool, apr_pool_t *common_pool) argument
513 fs_upgrade(svn_fs_t *fs, const char *path, svn_fs_upgrade_notify_t notify_func, void *notify_baton, svn_cancel_func_t cancel_func, void *cancel_baton, svn_mutex__t *common_pool_lock, apr_pool_t *pool, apr_pool_t *common_pool) argument
529 fs_verify(svn_fs_t *fs, const char *path, svn_revnum_t start, svn_revnum_t end, svn_fs_progress_notify_func_t notify_func, void *notify_baton, svn_cancel_func_t cancel_func, void *cancel_baton, svn_mutex__t *common_pool_lock, apr_pool_t *pool, apr_pool_t *common_pool) argument
546 fs_pack(svn_fs_t *fs, const char *path, svn_fs_pack_notify_t notify_func, void *notify_baton, svn_cancel_func_t cancel_func, void *cancel_baton, svn_mutex__t *common_pool_lock, apr_pool_t *pool, apr_pool_t *common_pool) argument
645 fs_set_svn_fs_open(svn_fs_t *fs, svn_error_t *(*svn_fs_open_)(svn_fs_t **, const char *, apr_hash_t *, apr_pool_t *, apr_pool_t *)) argument
[all...]
/freebsd-11-stable/sys/geom/label/
H A Dg_label_reiserfs.c54 reiserfs_sb_t *fs; local
62 fs = (reiserfs_sb_t *)g_read_data(cp, offset, secsize, NULL);
63 if (fs == NULL)
66 if (strncmp(fs->s_magic, REISERFS_SUPER_MAGIC,
68 g_free(fs);
72 return (fs);
79 reiserfs_sb_t *fs; local
86 fs = g_label_reiserfs_read_super(cp, REISERFS_OLD_DISK_OFFSET);
87 if (fs == NULL) {
89 fs
[all...]
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_alloc.c36 * $FreeBSD: stable/11/sys/fs/ext2fs/ext2_alloc.c 325745 2017-11-12 18:06:43Z fsu $
50 #include <fs/ext2fs/fs.h>
51 #include <fs/ext2fs/inode.h>
52 #include <fs/ext2fs/ext2_mount.h>
53 #include <fs/ext2fs/ext2fs.h>
54 #include <fs/ext2fs/ext2_extern.h>
86 struct m_ext2fs *fs; local
92 fs = ip->i_e2fs;
96 if ((u_int)size > fs
140 struct m_ext2fs *fs; local
182 struct m_ext2fs *fs; local
374 struct m_ext2fs *fs; local
470 struct m_ext2fs *fs; local
620 struct m_ext2fs *fs; local
661 ext2_cg_num_gdb(struct m_ext2fs *fs, int cg) argument
686 ext2_num_base_meta_blocks(struct m_ext2fs *fs, int cg) argument
707 ext2_get_cg_number(struct m_ext2fs *fs, daddr_t blk) argument
734 ext2_cg_block_bitmap_init(struct m_ext2fs *fs, int cg, struct buf *bp) argument
798 struct m_ext2fs *fs; local
937 struct m_ext2fs *fs; local
1042 struct m_ext2fs *fs; local
1083 struct m_ext2fs *fs; local
1171 struct m_ext2fs *fs; local
1217 struct m_ext2fs *fs; local
1270 ext2_mapsearch(struct m_ext2fs *fs, char *bbp, daddr_t bpref) argument
1306 ext2_fserr(struct m_ext2fs *fs, uid_t uid, char *cp) argument
1313 ext2_cg_has_sb(struct m_ext2fs *fs, int cg) argument
[all...]
H A Dext2_vfsops.c36 * $FreeBSD: stable/11/sys/fs/ext2fs/ext2_vfsops.c 350385 2019-07-27 19:29:28Z fsu $
59 #include <fs/ext2fs/ext2_mount.h>
60 #include <fs/ext2fs/inode.h>
62 #include <fs/ext2fs/fs.h>
63 #include <fs/ext2fs/ext2fs.h>
64 #include <fs/ext2fs/ext2_dinode.h>
65 #include <fs/ext2fs/ext2_extern.h>
98 struct ext2fs * es, struct m_ext2fs * fs);
116 struct m_ext2fs *fs; local
324 compute_sb_data(struct vnode *devvp, struct ext2fs *es, struct m_ext2fs *fs) argument
486 struct m_ext2fs *fs; local
580 struct m_ext2fs *fs; local
750 struct m_ext2fs *fs; local
811 struct m_ext2fs *fs; local
868 struct m_ext2fs *fs; local
940 struct m_ext2fs *fs; local
1054 struct m_ext2fs *fs; local
1086 struct m_ext2fs *fs = mp->um_e2fs; local
1108 struct m_ext2fs *fs = mp->um_e2fs; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Duuid.h35 svn_error_t *svn_fs_base__populate_uuid(svn_fs_t *fs,
40 library's fs vtable. */
42 svn_error_t *svn_fs_base__set_uuid(svn_fs_t *fs, const char *uuid,
H A Dnode-rev.c29 #include "fs.h"
34 #include "../libsvn_fs/fs-loader.h"
46 svn_fs_t *fs,
54 base_fs_data_t *bfd = fs->fsap_data;
57 SVN_ERR(svn_fs_bdb__new_node_id(&id, fs, copy_id, txn_id, trail, pool));
60 SVN_ERR(svn_fs_bdb__put_node_revision(fs, id, noderev, trail, pool));
66 SVN_ERR(svn_fs_bdb__set_node_origin(fs, svn_fs_base__id_node_id(id),
81 svn_fs_t *fs,
92 SVN_ERR(svn_fs_bdb__new_successor_id(&new_id, fs, old_id, copy_id,
96 SVN_ERR(svn_fs_bdb__put_node_revision(fs, new_i
44 svn_fs_base__create_node(const svn_fs_id_t **id_p, svn_fs_t *fs, node_revision_t *noderev, const char *copy_id, const char *txn_id, trail_t *trail, apr_pool_t *pool) argument
78 svn_fs_base__create_successor(const svn_fs_id_t **new_id_p, svn_fs_t *fs, const svn_fs_id_t *old_id, node_revision_t *new_noderev, const char *copy_id, const char *txn_id, trail_t *trail, apr_pool_t *pool) argument
106 svn_fs_base__delete_node_revision(svn_fs_t *fs, const svn_fs_id_t *id, svn_boolean_t origin_also, trail_t *trail, apr_pool_t *pool) argument
[all...]
H A Duuid.c24 #include "fs.h"
29 #include "../libsvn_fs/fs-loader.h"
45 return svn_fs_bdb__get_uuid(trail->fs, args->idx, args->uuid,
51 svn_fs_base__populate_uuid(svn_fs_t *fs, argument
55 SVN_ERR(svn_fs__check_fs(fs, TRUE));
64 SVN_ERR(svn_fs_base__retry_txn(fs, txn_body_get_uuid, &args,
70 fs->uuid = apr_pstrdup(fs->pool, uuid);
89 return svn_fs_bdb__set_uuid(trail->fs, args->idx, args->uuid,
95 svn_fs_base__set_uuid(svn_fs_t *fs, argument
[all...]
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dpartedit_sparc64.c48 is_fs_bootable(const char *part_type, const char *fs) argument
50 if (strcmp(fs, "freebsd-ufs") == 0 || strcmp(fs, "freebsd-zfs") == 0)
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlparser.c61 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS);
82 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { argument
83 lua_State *L = fs->ls->L;
85 int line = fs->f->linedefined;
91 luaX_syntaxerror(fs->ls, msg);
95 static void checklimit (FuncState *fs, int v, int l, const char *what) { argument
96 if (v > l) errorlimit(fs, l, what);
155 init_exp(e, VK, luaK_stringK(ls->fs, s));
165 FuncState *fs = ls->fs; local
178 FuncState *fs = ls->fs; local
197 getlocvar(FuncState *fs, int i) argument
205 FuncState *fs = ls->fs; local
213 removevars(FuncState *fs, int tolevel) argument
220 searchupvalue(FuncState *fs, TString *name) argument
230 newupvalue(FuncState *fs, TString *name, expdesc *v) argument
245 searchvar(FuncState *fs, TString *n) argument
259 markupval(FuncState *fs, int level) argument
270 singlevaraux(FuncState *fs, TString *n, expdesc *var, int base) argument
298 FuncState *fs = ls->fs; local
310 FuncState *fs = ls->fs; local
341 FuncState *fs = ls->fs; local
419 movegotosout(FuncState *fs, BlockCnt *bl) argument
437 enterblock(FuncState *fs, BlockCnt *bl, lu_byte isloop) argument
471 leaveblock(FuncState *fs) argument
500 FuncState *fs = ls->fs; local
520 FuncState *fs = ls->fs->prev; local
526 open_func(LexState *ls, FuncState *fs, BlockCnt *bl) argument
556 FuncState *fs = ls->fs; local
617 FuncState *fs = ls->fs; local
653 FuncState *fs = ls->fs; local
672 closelistfield(FuncState *fs, struct ConsControl *cc) argument
683 lastlistfield(FuncState *fs, struct ConsControl *cc) argument
732 FuncState *fs = ls->fs; local
760 FuncState *fs = ls->fs; local
823 FuncState *fs = ls->fs; local
901 FuncState *fs = ls->fs; local
962 FuncState *fs = ls->fs; local
1083 FuncState *fs = ls->fs; local
1108 FuncState *fs = ls->fs; local
1194 checkrepeated(FuncState *fs, Labellist *ll, TString *label) argument
1216 FuncState *fs = ls->fs; local
1234 FuncState *fs = ls->fs; local
1254 FuncState *fs = ls->fs; local
1285 FuncState *fs = ls->fs; local
1310 FuncState *fs = ls->fs; local
1332 FuncState *fs = ls->fs; local
1357 FuncState *fs = ls->fs; local
1376 FuncState *fs = ls->fs; local
1410 FuncState *fs = ls->fs; local
1424 FuncState *fs = ls->fs; local
1481 FuncState *fs = ls->fs; local
1497 FuncState *fs = ls->fs; local
1603 mainfunc(LexState *ls, FuncState *fs) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_fs_util.h69 svn_fs__check_fs(svn_fs_t *fs, svn_boolean_t expect_open);
74 Note: we log the UUID, rather than (fs)->path, since some of these
76 #define svn_fs__identifier(fs) ((fs)->uuid)
103 svn_fs__identifier(root->fs), root->txn, path_str) \
108 svn_fs__identifier(root->fs), root->rev, path_str) \
119 #define SVN_FS__ERR_NOT_MUTABLE(fs, rev, path_in_repo) \
123 svn_fs__identifier(fs), rev, path_in_repo)
126 #define SVN_FS__ERR_NOT_DIRECTORY(fs, path_in_repo) \
130 path_in_repo, svn_fs__identifier(fs))
[all...]
/freebsd-11-stable/stand/libsa/
H A Dnandfs.c34 #include <fs/nandfs/nandfs_fs.h>
125 #define NINDIR(fs) ((fs)->nf_blocksize / sizeof(nandfs_daddr_t))
195 nandfs_find_super_block(struct nandfs *fs, struct open_file *f) argument
201 sb = malloc(fs->nf_sectorsize);
205 memset(fs->nf_sb, 0, sizeof(*fs->nf_sb));
207 sectors_to_read = (NANDFS_NFSAREAS * fs->nf_fsdata->f_erasesize) /
208 fs->nf_sectorsize;
211 i * fs
245 nandfs_find_fsdata(struct nandfs *fs, struct open_file *f) argument
270 nandfs_read_structures(struct nandfs *fs, struct open_file *f) argument
288 nandfs_mount(struct nandfs *fs, struct open_file *f) argument
371 struct nandfs *fs; local
437 struct nandfs *fs = f->f_fsdata; local
453 struct nandfs *fs = (struct nandfs *)f->f_fsdata; local
487 struct nandfs *fs = f->f_fsdata; local
525 struct nandfs *fs = f->f_fsdata; local
539 struct nandfs *fs = f->f_fsdata; local
570 nandfs_buf_read(struct nandfs *fs, void **buf_p, size_t *size_p) argument
600 nandfs_lookup_node(struct nandfs *fs, uint64_t ino) argument
631 nandfs_lookup_path(struct nandfs *fs, const char *path) argument
768 nandfs_read_inode(struct nandfs *fs, struct nandfs_node *node, nandfs_daddr_t blknr, u_int nblks, void *buf, int raw) argument
811 nandfs_read_blk(struct nandfs *fs, nandfs_daddr_t blknr, void *buf, int phys) argument
822 nandfs_get_checkpoint(struct nandfs *fs, uint64_t cpno, struct nandfs_checkpoint *cp) argument
851 nandfs_get_map(struct nandfs *fs, struct nandfs_node *node, nandfs_daddr_t blknr, int phys) argument
879 nandfs_bmap_lookup(struct nandfs *fs, struct nandfs_node *node, nandfs_lbn_t lblknr, nandfs_daddr_t *vblknr, int phys) argument
945 nandfs_vtop(struct nandfs *fs, nandfs_daddr_t vblocknr) argument
[all...]
/freebsd-11-stable/sys/ufs/ffs/
H A Dfs.h29 * @(#)fs.h 8.13 (Berkeley) 3/21/95
30 * $FreeBSD: stable/11/sys/ufs/ffs/fs.h 356905 2020-01-20 08:28:54Z eugen $
51 * For filesystem fs, the offsets of the various blocks of interest
53 * [fs->fs_sblkno] Super-block
54 * [fs->fs_cblkno] Cylinder group block
55 * [fs->fs_iblkno] Inode blocks
56 * [fs->fs_dblkno] Data blocks
57 * The beginning of cylinder group cg in fs, is given by
58 * the ``cgbase(fs, cg)'' macro.
97 * information in the inode, using the ``blksize(fs, i
273 struct fs { struct
664 lbn_offset(struct fs *fs, int level) argument
[all...]
/freebsd-11-stable/sys/geom/
H A Dgeom_vol_ffs.c41 #include <ufs/ffs/fs.h>
70 struct fs *fs; local
105 fs = (struct fs *) g_read_data(cp, superblock,
107 if (fs == NULL)
110 if (fs->fs_magic == FS_UFS1_MAGIC) {
111 if (fs->fs_old_size * fs->fs_fsize !=
113 g_free(fs);
[all...]
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dop-common.h42 #define _FP_UNPACK_CANONICAL(fs, wc, X) \
47 _FP_FRAC_HIGH_RAW_##fs(X) |= _FP_IMPLBIT_##fs; \
49 X##_e -= _FP_EXPBIAS_##fs; \
61 _shift -= _FP_FRACXBITS_##fs; \
63 X##_e -= _FP_EXPBIAS_##fs - 1 + _shift; \
69 case _FP_EXPMAX_##fs: \
76 if (!(_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)) \
86 #define _FP_UNPACK_SEMIRAW(fs, w
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Dsrvr_nfs.c116 * Flush cached data for an fserver (or for all, if fs==NULL)
119 flush_srvr_nfs_cache(fserver *fs) argument
124 if (fs == NULL || fs == fs2) {
187 fserver *fs = NULL; local
192 ITER(fs, fserver, &nfs_srvr_list)
193 if (fs == fs2)
196 if (fs == fs2) {
199 nfs_private *np = (nfs_private *) fs->fs_private;
202 dlog("got port (%d) for mountd on %s", (int) port, fs
235 call_portmap(fserver *fs, AUTH *auth, u_long prog, u_long vers, u_long prot) argument
271 recompute_portmap(fserver *fs) argument
311 get_mountd_port(fserver *fs, u_short *port, wchan_t wchan) argument
372 fserver *fs; local
451 check_fs_addr_change(fserver *fs) argument
496 fserver *fs = v; local
570 fserver *fs = v; local
644 start_nfs_pings(fserver *fs, int pingval) argument
688 fserver *fs; local
[all...]
/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dlinux-unwind.h40 _Unwind_FrameState *fs)
56 fs->cfa_how = CFA_REG_OFFSET;
57 fs->cfa_reg = 14;
58 fs->cfa_offset = new_cfa - (long) context->cfa;
61 fs->regs.reg[i].how = REG_SAVED_OFFSET;
62 fs->regs.reg[i].loc.offset =
67 fs->regs.reg[i + 16].how = REG_SAVED_OFFSET;
68 fs->regs.reg[i + 16].loc.offset =
77 fs->regs.reg[i + 32].how = REG_SAVED_OFFSET;
78 fs
39 sparc64_fallback_frame_state(struct _Unwind_Context *context, _Unwind_FrameState *fs) argument
96 sparc_fallback_frame_state(struct _Unwind_Context *context, _Unwind_FrameState *fs) argument
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-statvfs.c48 struct statfs fs; local
50 memset(&fs, 0, sizeof(fs));
51 if (statfs(path, &fs) == -1)
53 copy_statfs_to_statvfs(buf, &fs);
66 struct statfs fs; local
68 memset(&fs, 0, sizeof(fs));
69 if (fstatfs(fd, &fs) == -1)
71 copy_statfs_to_statvfs(buf, &fs);
[all...]
/freebsd-11-stable/sbin/fsck_ffs/
H A Dgjournal.c64 #include <ufs/ffs/fs.h>
93 static struct fs *fs = NULL; variable in typeref:struct:fs
107 assert(disk != NULL && fs != NULL);
184 assert(disk != NULL && fs != NULL);
211 assert(disk != NULL && fs != NULL);
237 fs = &disk->d_fs;
247 fs->fs_clean = 1;
254 fs = NULL;
266 cg = dtog(fs, bn
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dutil.c33 #include "../libsvn_fs/fs-loader.h"
56 svn_fs_x__is_packed_rev(svn_fs_t *fs, svn_revnum_t rev) argument
58 svn_fs_x__data_t *ffd = fs->fsap_data;
65 svn_fs_x__is_packed_revprop(svn_fs_t *fs, svn_revnum_t rev) argument
67 svn_fs_x__data_t *ffd = fs->fsap_data;
74 svn_fs_x__packed_base_rev(svn_fs_t *fs, svn_revnum_t rev) argument
76 svn_fs_x__data_t *ffd = fs->fsap_data;
84 svn_fs_x__pack_size(svn_fs_t *fs, svn_revnum_t rev) argument
86 svn_fs_x__data_t *ffd = fs->fsap_data;
92 svn_fs_x__path_format(svn_fs_t *fs, argument
99 svn_fs_x__path_uuid(svn_fs_t *fs, apr_pool_t *result_pool) argument
106 svn_fs_x__path_current(svn_fs_t *fs, apr_pool_t *result_pool) argument
113 svn_fs_x__path_next(svn_fs_t *fs, apr_pool_t *result_pool) argument
120 svn_fs_x__path_txn_current(svn_fs_t *fs, apr_pool_t *result_pool) argument
127 svn_fs_x__path_txn_current_lock(svn_fs_t *fs, apr_pool_t *result_pool) argument
134 svn_fs_x__path_lock(svn_fs_t *fs, apr_pool_t *result_pool) argument
141 svn_fs_x__path_pack_lock(svn_fs_t *fs, apr_pool_t *result_pool) argument
148 svn_fs_x__path_revprop_generation(svn_fs_t *fs, apr_pool_t *result_pool) argument
160 construct_shard_sub_path(svn_fs_t *fs, svn_revnum_t rev, svn_boolean_t packed, const char *filename, apr_pool_t *result_pool) argument
182 svn_fs_x__path_rev_packed(svn_fs_t *fs, svn_revnum_t rev, const char *kind, apr_pool_t *result_pool) argument
192 svn_fs_x__path_shard(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *result_pool) argument
200 svn_fs_x__path_rev(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *result_pool) argument
213 svn_fs_x__path_rev_absolute(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *result_pool) argument
223 svn_fs_x__path_pack_shard(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *result_pool) argument
231 svn_fs_x__path_revprops(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *result_pool) argument
272 svn_fs_x__path_txns_dir(svn_fs_t *fs, apr_pool_t *result_pool) argument
285 construct_txn_path(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, const char *filename, apr_pool_t *result_pool) argument
302 svn_fs_x__path_txn_dir(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
313 svn_fs_x__path_txn_sha1(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, const unsigned char *sha1, apr_pool_t *pool) argument
328 svn_fs_x__path_txn_changes(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
336 svn_fs_x__path_txn_props(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
344 svn_fs_x__path_l2p_proto_index(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
353 svn_fs_x__path_p2l_proto_index(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
362 svn_fs_x__path_txn_next_ids(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
370 svn_fs_x__path_min_unpacked_rev(svn_fs_t *fs, apr_pool_t *result_pool) argument
377 svn_fs_x__path_txn_proto_revs(svn_fs_t *fs, apr_pool_t *result_pool) argument
384 svn_fs_x__path_txn_item_index(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
397 construct_proto_rev_path(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, const char *suffix, apr_pool_t *result_pool) argument
414 svn_fs_x__path_txn_proto_rev(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
422 svn_fs_x__path_txn_proto_rev_lock(svn_fs_t *fs, svn_fs_x__txn_id_t txn_id, apr_pool_t *result_pool) argument
435 construct_txn_node_path(svn_fs_t *fs, const svn_fs_x__id_t *id, const char *suffix, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
451 svn_fs_x__path_txn_node_rev(svn_fs_t *fs, const svn_fs_x__id_t *id, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
460 svn_fs_x__path_txn_node_props(svn_fs_t *fs, const svn_fs_x__id_t *id, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
470 svn_fs_x__path_txn_node_children(svn_fs_t *fs, const svn_fs_x__id_t *id, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
498 svn_fs_x__read_min_unpacked_rev(svn_revnum_t *min_unpacked_rev, svn_fs_t *fs, apr_pool_t *scratch_pool) argument
520 svn_fs_x__update_min_unpacked_rev(svn_fs_t *fs, apr_pool_t *scratch_pool) argument
534 svn_fs_x__write_min_unpacked_rev(svn_fs_t *fs, svn_revnum_t revnum, apr_pool_t *scratch_pool) argument
554 svn_fs_x__read_current(svn_revnum_t *rev, svn_fs_t *fs, apr_pool_t *scratch_pool) argument
574 svn_fs_x__write_current(svn_fs_t *fs, svn_revnum_t rev, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/s390/
H A Dtpf-unwind.h60 _Unwind_FrameState *fs)
79 fs->cfa_how = CFA_REG_OFFSET;
80 fs->cfa_reg = 15;
81 fs->cfa_offset = STACK_POINTER_OFFSET;
86 fs->regs.reg[i].how = REG_SAVED_REG;
87 fs->regs.reg[i].loc.reg = i;
92 fs->regs.reg[14].how = REG_SAVED_OFFSET;
93 fs->regs.reg[14].loc.offset = TPFRA_OFFSET - STACK_POINTER_OFFSET;
94 fs->retaddr_column = 14;
103 fs
59 s390_fallback_frame_state(struct _Unwind_Context *context, _Unwind_FrameState *fs) argument
[all...]

Completed in 164 milliseconds

1234567891011>>