| /freebsd-14.2/usr.bin/fstat/ |
| H A D | fstat.c | 88 struct filestat *fst); 90 struct filestat *fst); 92 struct filestat *fst); 94 struct filestat *fst); 96 struct filestat *fst); 98 struct filestat *fst); 217 struct filestat *fst; in dofiles() local 289 switch (fst->fs_type) { in print_file_info() 315 fst->fs_type, fst->fs_fd, pid); in print_file_info() 530 printf(" %-15s", fst->fs_path != NULL ? fst->fs_path : "-"); in print_sem_info() [all …]
|
| H A D | fuser.c | 288 struct filestat *fst; in dofiles() local 297 STAILQ_FOREACH(fst, head, next) { in dofiles() 298 if (fst->fs_type != PS_FST_TYPE_VNODE) in dofiles() 300 error = procstat_get_vnode_info(procstat, fst, &vn, errbuf); in dofiles() 331 cons->flags |= fst->fs_fflags; in dofiles() 332 cons->uflags |= fst->fs_uflags; in dofiles() 344 cons->uflags = fst->fs_uflags; in dofiles() 345 cons->flags = fst->fs_fflags; in dofiles()
|
| /freebsd-14.2/usr.bin/procstat/ |
| H A D | procstat_files.c | 293 struct filestat *fst; in procstat_files() local 311 STAILQ_FOREACH(fst, head, next) { in procstat_files() 337 STAILQ_FOREACH(fst, head, next) { in procstat_files() 354 xo_emit("{:fd/%5d} ", fst->fs_fd); in procstat_files() 356 switch (fst->fs_type) { in procstat_files() 527 if (fst->fs_ref_count > -1) in procstat_files() 529 fst->fs_ref_count); in procstat_files() 532 if (fst->fs_offset > -1) in procstat_files() 534 (intmax_t)fst->fs_offset); in procstat_files() 542 switch (fst->fs_type) { in procstat_files() [all …]
|
| H A D | procstat_pwdx.c | 54 struct filestat *fst; in procstat_pwdx() local 59 STAILQ_FOREACH(fst, head, next) { in procstat_pwdx() 60 if ((fst->fs_uflags & PS_FST_UFLAG_CDIR) && in procstat_pwdx() 61 (fst->fs_path != NULL)) { in procstat_pwdx() 63 xo_emit("{:cwd/%s}", fst->fs_path); in procstat_pwdx()
|
| /freebsd-14.2/lib/libprocstat/ |
| H A D | libprocstat_compat.c | 92 struct filestat *fst, struct freebsd11_ptsstat *pts, char *errbuf); 96 struct filestat *fst, struct freebsd11_semstat *sem, char *errbuf); 98 struct filestat *fst, struct freebsd11_shmstat *shm, char *errbuf); 102 struct filestat *fst, struct freebsd11_vnstat *vn, char *errbuf); 115 r = procstat_get_pts_info(procstat, fst, &pts, errbuf); in freebsd11_procstat_get_pts_info() 134 r = procstat_get_pts_info(procstat, fst, &pts, errbuf); in freebsd12_procstat_get_pts_info() 153 r = procstat_get_sem_info(procstat, fst, &sem, errbuf); in freebsd11_procstat_get_sem_info() 168 r = procstat_get_shm_info(procstat, fst, &shm, errbuf); in freebsd11_procstat_get_shm_info() 183 r = procstat_get_socket_info(procstat, fst, &sock, errbuf); in freebsd11_procstat_get_socket_info() 208 r = procstat_get_vnode_info(procstat, fst, &vn, errbuf); in freebsd11_procstat_get_vnode_info() [all …]
|
| H A D | libprocstat.c | 370 free(fst); in procstat_freefiles() 973 assert(fst); in procstat_get_pipe_info_kvm() 1000 assert(fst); in procstat_get_pipe_info_sysctl() 1040 assert(fst); in procstat_get_pts_info_kvm() 1066 assert(fst); in procstat_get_pts_info_sysctl() 1107 assert(fst); in procstat_get_sem_info_kvm() 1149 assert(fst); in procstat_get_sem_info_sysctl() 1190 assert(fst); in procstat_get_shm_info_kvm() 1232 assert(fst); in procstat_get_shm_info_sysctl() 1267 #define FSTYPE(fst) {#fst, fst##_filestat} in procstat_get_vnode_info_kvm() argument [all …]
|
| H A D | libprocstat.h | 223 int procstat_get_pipe_info(struct procstat *procstat, struct filestat *fst, 225 int procstat_get_pts_info(struct procstat *procstat, struct filestat *fst, 227 int procstat_get_sem_info(struct procstat *procstat, struct filestat *fst, 229 int procstat_get_shm_info(struct procstat *procstat, struct filestat *fst, 231 int procstat_get_socket_info(struct procstat *procstat, struct filestat *fst, 233 int procstat_get_vnode_info(struct procstat *procstat, struct filestat *fst,
|
| /freebsd-14.2/contrib/netbsd-tests/fs/ffs/ |
| H A D | t_quota2_remount.c | 32 struct statvfs fst; in do_quota() local 52 if (rump_sys_statvfs1(FSTEST_MNTNAME, &fst, 0) != 0) in do_quota() 55 if ((fst.f_flag & ST_QUOTA) != 0) in do_quota() 63 if (rump_sys_statvfs1(FSTEST_MNTNAME, &fst, 0) != 0) in do_quota() 66 if ((fst.f_flag & ST_QUOTA) == 0) in do_quota() 74 if (rump_sys_statvfs1(FSTEST_MNTNAME, &fst, 0) != 0) in do_quota() 77 if ((fst.f_flag & ST_QUOTA) == 0) in do_quota()
|
| /freebsd-14.2/usr.bin/quota/ |
| H A D | quota.c | 490 struct statfs *fst; in getprivs() local 498 nfst = getmntinfo(&fst, MNT_NOWAIT); in getprivs() 515 if (strcmp(fst[i].f_fstypename, "nfs") == 0) { in getprivs() 518 if (getnfsquota(&fst[i], qup, id, quotatype) == 0) in getprivs() 535 strcpy(qup->fsname, fst[i].f_mntonname); in getprivs() 577 if (fst->f_flags & MNT_LOCAL) in getnfsquota() 583 cp = fst->f_mntfromname; in getnfsquota() 592 memcpy(host, fst->f_mntfromname, cp - fst->f_mntfromname); in getnfsquota() 596 if (strncmp(fst->f_mntfromname, "pid", 3) == 0 && in getnfsquota() 597 strchr(fst->f_mntfromname, '@') != NULL) in getnfsquota() [all …]
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/tmpfile/ |
| H A D | tmpfile_stat_mode.c | 51 struct stat fst; in test_stat_mode() local 70 if (fstat(fd, &fst) == -1) in test_stat_mode() 82 mode = fst.st_mode & 0777; in test_stat_mode() 90 if (fstat(fd, &fst) == -1) in test_stat_mode() 94 mode = fst.st_mode & 0777; in test_stat_mode()
|
| /freebsd-14.2/sys/dev/random/ |
| H A D | build.sh | 42 ../../crypto/rijndael/rijndael-api-fst.c \ 43 ../../crypto/rijndael/rijndael-alg-fst.c \ 52 ../../crypto/rijndael/rijndael-api-fst.c \ 53 ../../crypto/rijndael/rijndael-alg-fst.c \
|
| /freebsd-14.2/sys/vm/ |
| H A D | redzone.c | 134 struct stack ast, fst; in redzone_check() local 162 stack_save(&fst); in redzone_check() 163 stack_print_ddb(&fst); in redzone_check() 181 stack_save(&fst); in redzone_check() 182 stack_print_ddb(&fst); in redzone_check()
|
| /freebsd-14.2/contrib/wpa/src/ap/ |
| H A D | utils.c | 66 if (ohapd->iface->fst && in prune_associations() 67 data->hapd->iface->fst && in prune_associations() 68 fst_are_ifaces_aggregated(ohapd->iface->fst, in prune_associations() 69 data->hapd->iface->fst)) in prune_associations()
|
| /freebsd-14.2/libexec/rpc.rquotad/ |
| H A D | rquotad.c | 292 struct fstab fst; in getfsquota() local 294 fst.fs_file = path; in getfsquota() 295 fst.fs_mntops = blank; in getfsquota() 296 fst.fs_vfstype = blank; in getfsquota() 301 qf = quota_open(&fst, type, O_RDONLY); in getfsquota() 304 fst.fs_file, fst.fs_mntops, type, in getfsquota()
|
| /freebsd-14.2/sys/contrib/openzfs/config/ |
| H A D | kernel-fst-mount.m4 | 17 static struct file_system_type fst __attribute__ ((unused)) = { 24 AC_MSG_CHECKING([whether fst->mount() exists]) 28 ZFS_LINUX_TEST_ERROR([fst->mount()])
|
| /freebsd-14.2/sys/crypto/rijndael/ |
| H A D | Makefile | 4 SRCS= ${PROG}.c rijndael-alg-fst.c rijndael-api-fst.c
|
| /freebsd-14.2/sys/modules/geom/geom_bde/ |
| H A D | Makefile | 8 SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha256c.c sha512c.c
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_trampoline_loongarch64.S | 25 fst.d $f\i, $sp, (8 * \i) 41 fst.d $f1, $sp, 8 42 fst.d $f0, $sp, 0
|
| /freebsd-14.2/stand/libsa/geli/ |
| H A D | Makefile.inc | 10 .for i in rijndael-alg-fst.c rijndael-api-fst.c rijndael-api.c
|
| /freebsd-14.2/tests/sys/devrandom/ |
| H A D | Makefile | 19 LDADD.uint128_test+= ${SRCTOP}/sys/crypto/rijndael/rijndael-alg-fst.c 20 LDADD.uint128_test+= ${SRCTOP}/sys/crypto/rijndael/rijndael-api-fst.c
|
| /freebsd-14.2/sbin/gbde/ |
| H A D | Makefile | 5 SRCS+= rijndael-alg-fst.c 6 SRCS+= rijndael-api-fst.c
|
| /freebsd-14.2/lib/msun/i387/ |
| H A D | e_exp.S | 66 fst %st(1) 68 fst %st(2)
|
| /freebsd-14.2/sbin/mount/ |
| H A D | mount.c | 903 struct fstab *fst; in putfsent() local 942 if ((fst = getfsspec(ent->f_mntfromname))) in putfsent() 944 fst->fs_freq, fst->fs_passno); in putfsent() 945 else if ((fst = getfsfile(ent->f_mntonname))) in putfsent() 947 fst->fs_freq, fst->fs_passno); in putfsent()
|
| /freebsd-14.2/sys/modules/wlan_ccmp/ |
| H A D | Makefile | 7 SRCS+= rijndael-alg-fst.c rijndael-api.c
|
| /freebsd-14.2/contrib/wpa/src/ |
| H A D | Makefile | 2 SUBDIRS += fst
|