HomeSort by: relevance | last modified time | path
    Searched defs:fs (Results 1 - 25 of 278) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/kyua-cli/dist/utils/fs/
lua_module.hpp 29 /// \file utils/fs/lua_module.hpp
30 /// Lua bindings for the utils::fs module.
38 namespace fs { namespace in namespace:utils
44 } // namespace fs
operations.hpp 29 /// \file utils/fs/operations.hpp
43 namespace fs { namespace in namespace:utils
50 bool exists(const fs::path&);
54 fs::path mkdtemp(const std::string&);
55 fs::path mkstemp(const std::string&);
61 } // namespace fs
path.hpp 29 /// \file utils/fs/path.hpp
30 /// Provides the utils::fs::path class.
43 namespace fs { namespace in namespace:utils
82 } // namespace fs
auto_cleaners.hpp 29 /// \file utils/fs/auto_cleaners.hpp
37 #include "utils/fs/path.hpp"
41 namespace fs { namespace in namespace:utils
84 } // namespace fs
  /src/sys/ufs/mfs/
mfs_miniroot.c 40 #include <ufs/ffs/fs.h>
52 struct fs *fs = (struct fs *)((char *)base + SBLOCK_UFS1); local
60 if (fs->fs_magic != FS_UFS1_MAGIC || fs->fs_bsize > MAXBSIZE ||
61 fs->fs_bsize < sizeof(struct fs))
65 mfs_rootsize = fs->fs_fsize * fs->fs_size
    [all...]
  /src/external/bsd/kyua-cli/dist/cli/
main.hpp 42 namespace fs { namespace in namespace:utils
44 } // namespace fs
53 utils::fs::path default_log_name(void);
cmd_list.hpp 46 namespace fs { namespace in namespace:utils
48 } // namespace fs
common.hpp 46 #include "utils/fs/path.hpp"
50 namespace fs { namespace in namespace:utils
52 } // namespace fs
89 utils::optional< utils::fs::path > get_home(void);
91 utils::optional< utils::fs::path > build_root_path(
93 utils::fs::path kyuafile_path(const utils::cmdline::parsed_cmdline&);
95 utils::fs::path store_path(const utils::cmdline::parsed_cmdline&);
  /src/external/lgpl3/gmp/dist/mpf/
fits_s.h 39 mp_size_t fs, fn; variable
48 fs = SIZ (f);
50 fn = ABS (fs);
70 return fl <= (fs >= 0 ? (mp_limb_t) MAXIMUM : NEG_CAST (mp_limb_t, MINIMUM));
  /src/sys/ufs/ffs/
ffs_quota2.c 44 #include <ufs/ffs/fs.h>
50 struct fs *fs = ump->um_fs; local
55 if ((fs->fs_flags & FS_DOQUOTA2) == 0)
59 ump->umq2_bsize = fs->fs_bsize;
60 ump->umq2_bmask = fs->fs_qbmask;
61 if (fs->fs_quota_magic != Q2_HEAD_MAGIC) {
66 if ((fs->fs_quota_flags & FS_Q2_DO_TYPE(USRQUOTA)) &&
67 fs->fs_quotafile[USRQUOTA] == 0) {
72 if ((fs->fs_quota_flags & FS_Q2_DO_TYPE(GRPQUOTA)) &
    [all...]
  /src/usr.sbin/fstyp/
ufs.c 47 #include <ufs/ffs/fs.h>
57 struct fs *fs; local
67 fs = (struct fs *)read_buf(fp, superblock, SBLOCKSIZE);
68 if (fs == NULL)
71 if (fs->fs_magic == FS_UFS2EA_MAGIC)
72 fs->fs_magic = FS_UFS2_MAGIC;
73 else if (fs->fs_magic == FS_UFS2EA_MAGIC_SWAPPED)
74 fs->fs_magic = FS_UFS2_MAGIC_SWAPPED
    [all...]
ext2fs.c 63 e2sb_t *fs; local
66 fs = read_buf(fp, EXT2FS_SB_OFFSET, 512);
67 if (fs == NULL)
71 if (fs->s_magic == EXT2_SUPER_MAGIC &&
72 fs->s_rev_level == EXT2_DYNAMIC_REV) {
76 free(fs);
80 s_volume_name = fs->s_volume_name;
82 s_volume_name[sizeof(fs->s_volume_name) - 1] = '\0';
88 free(fs);
  /src/lib/librefuse/
fuse_internal.h 52 struct fuse_fs *fs; /* The base filesystem layer. */ member in struct:fuse
  /src/sys/arch/sparc/sparc/
process_machdep.c 159 struct fpstate *fs; local
161 if ((fs = l->l_md.md_fpstate) == NULL)
162 fs = &initfpstate;
164 *regs = fs->fs_reg;
171 struct fpstate *fs; local
173 if ((fs = l->l_md.md_fpstate) == NULL) {
174 fs = kmem_zalloc(sizeof(*fs), KM_SLEEP);
175 l->l_md.md_fpstate = fs;
178 fs->fs_qsize = 0
    [all...]
  /src/sys/arch/sparc64/sparc64/
process_machdep.c 206 const struct fpstate64 *fs; local
208 if ((fs = l->l_md.md_fpstate) == NULL)
209 fs = &initfpstate;
213 *regs = fs->fs_reg;
222 regp->fr_regs[i] = fs->fs_regs[i];
223 regp->fr_fsr = fs->fs_fsr;
231 struct fpstate64 *fs; local
233 if ((fs = l->l_md.md_fpstate) == NULL) {
234 fs = pool_cache_get(fpstate_cache, PR_WAITOK);
235 memcpy(fs, &initfpstate, sizeof *fs)
    [all...]
  /src/sys/ufs/ext2fs/
ext2fs_subr.c 85 struct m_ext2fs *fs; local
91 fs = ip->i_e2fs;
92 lbn = ext2_lblkno(fs, offset);
95 if ((error = bread(vp, lbn, fs->e2fs_bsize, 0, &bp)) != 0) {
99 *res = (char *)bp->b_data + ext2_blkoff(fs, offset);
  /src/sys/ufs/lfs/
lfs_itimes.c 61 struct lfs *fs = ip->i_lfs; local
75 lfs_dino_setatime(fs, ip->i_din, acc->tv_sec);
76 lfs_dino_setatimensec(fs, ip->i_din, acc->tv_nsec);
77 if (fs->lfs_is64 || lfs_sb_getversion(fs) > 1) {
82 if (!LFS_SEGLOCK_HELD(fs))
83 lfs_fraglock_enter(fs, RW_READER);
85 LFS_IENTRY(ifp, fs, ip->i_number, ibp);
86 lfs_if_setatime_sec(fs, ifp, acc->tv_sec);
87 lfs_if_setatime_nsec(fs, ifp, acc->tv_nsec)
    [all...]
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
VariantBenchmarks.h 34 static constexpr F fs[] = {[] { return V(std::in_place_index<Is>); }...}; local
38 v = fs[getRandomInteger(0ul, sizeof...(Is) - 1)]();
  /src/external/bsd/am-utils/dist/amd/
srvr_amfs_auto.c 43 * Automount FS server ("localhost") modeling
65 fserver *fs = localhost; local
67 if (!fs) {
68 fs = ALLOC(struct fserver);
69 fs->fs_refc = 0;
70 fs->fs_host = xstrdup("localhost");
71 fs->fs_ip = NULL;
72 fs->fs_cid = 0;
73 fs->fs_pinger = AM_PINGER;
74 fs->fs_flags = FSF_VALID | FSF_PING_UNINIT
112 fserver *fs = v; local
    [all...]
  /src/external/bsd/kyua-cli/dist/engine/
testers.hpp 47 namespace fs { namespace in namespace:utils
49 } // namespace fs
72 std::string list(const utils::fs::path&) const;
73 void test(const utils::fs::path&, const std::string&,
74 const utils::fs::path&, const utils::fs::path&,
75 const utils::fs::path&,
80 utils::fs::path tester_path(const std::string&);
  /src/external/bsd/kyua-cli/dist/store/
backend.hpp 38 namespace fs { namespace in namespace:utils
40 } // namespace fs
58 utils::fs::path migration_file(const int, const int);
59 utils::fs::path schema_file(void);
61 void backup_database(const utils::fs::path&, const int);
84 static backend open_ro(const utils::fs::path&);
85 static backend open_rw(const utils::fs::path&);
92 void migrate_schema(const utils::fs::path&);
  /src/games/backgammon/common_source/
save.c 62 char *fs; local
78 fs = fname;
79 while ((*fs = readc()) != '\n') {
80 if (*fs == old.c_cc[VERASE]) {
81 if (fs > fname) {
82 fs--;
86 writec(*fs);
91 writec(*fs++);
93 *fs = '\0';
  /src/sys/arch/ews4800mips/stand/common/
devopen.c 136 enum fstype fs; local
145 fs = FSTYPE_USTARFS;
149 fs = fstype(partition);
155 switch (fs) {
  /src/usr.sbin/makefs/ffs/
buf.c 68 fsinfo_t *fs = vp->fs; local
77 offset = (*bpp)->b_blkno * fs->sectorsize + fs->offset;
153 fsinfo_t *fs = bp->b_fs; local
156 offset = bp->b_blkno * fs->sectorsize + fs->offset;
228 bp->b_fs = vp->fs;
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
gen_copy.c 105 char *fs; local
116 if (asprintf (&fs, "%s(%s)->%s%s",
120 if (fs == NULL)
129 fprintf(codefile, "if(%s) {\n", fs);
134 copy_type (fs, ts, m->type, FALSE);
139 free (fs);

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>