Home
last modified time | relevance | path

Searched refs:waitfor (Results 1 – 25 of 49) sorted by relevance

12

/netbsd/src/crypto/external/bsd/heimdal/dist/tests/kdc/
Dwait-kdc.sh36 waitfor="${3:-${name} started}"
44 if grep "${waitfor}" ${log} > /dev/null; then
/netbsd/src/sys/fs/udf/
Dudf_subr.h81 struct long_ad *icb, int waitfor);
95 int udf_write_physical_partition_spacetables(struct udf_mount *ump, int waitfor);
96 int udf_write_metadata_partition_spacetable(struct udf_mount *ump, int waitfor);
97 void udf_do_sync(struct udf_mount *ump, kauth_cred_t cred, int waitfor);
136 int udf_writeout_node(struct udf_node *udf_node, int waitfor);
Dudf_strat_direct.c192 int waitfor = args->waitfor; in udf_write_nodedscr_direct() local
209 if (waitfor) { in udf_write_nodedscr_direct()
Dudf_vfsops.c866 udf_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in udf_sync() argument
875 if (ump->syncing && !waitfor) { in udf_sync()
884 udf_do_sync(ump, cred, waitfor); in udf_sync()
886 if (waitfor == MNT_WAIT) in udf_sync()
Dudf_readwrite.c666 struct long_ad *icb, int waitfor) in udf_write_logvol_dscr() argument
677 args.waitfor = waitfor; in udf_write_logvol_dscr()
Dudf_strat_sequential.c206 int waitfor = args->waitfor; in udf_write_logvol_dscr_seq() local
223 if (waitfor) { in udf_write_logvol_dscr_seq()
Dudf.h249 int waitfor; member
Dudf_subr.c1666 udf_write_physical_partition_spacetables(struct udf_mount *ump, int waitfor) in udf_write_physical_partition_spacetables() argument
1823 udf_write_metadata_partition_spacetable(struct udf_mount *ump, int waitfor) in udf_write_metadata_partition_spacetable() argument
5688 udf_writeout_node(struct udf_node *udf_node, int waitfor) in udf_writeout_node() argument
5745 error = udf_write_logvol_dscr(udf_node, dscr, loc, waitfor); in udf_writeout_node()
6220 int waitfor, flags; in udf_update() local
6264 waitfor = 0; in udf_update()
6267 waitfor = updflags & UPDATE_WAIT; in udf_update()
6269 waitfor |= UPDATE_WAIT; in udf_update()
6271 if (waitfor) in udf_update()
6490 udf_do_sync(struct udf_mount *ump, kauth_cred_t cred, int waitfor) in udf_do_sync() argument
[all …]
/netbsd/src/sbin/dump_lfs/
Dlfs_inode.c413 int waitfor = 0; in lfs_wrap_stop() local
420 if (fcntl(root_fd, LFCNWRAPSTOP, &waitfor) < 0) { in lfs_wrap_stop()
436 int waitfor = 0; in lfs_wrap_go() local
441 fcntl(root_fd, LFCNWRAPGO, &waitfor); in lfs_wrap_go()
/netbsd/src/sys/fs/puffs/
Dpuffs_vfsops.c529 pageflush(struct mount *mp, kauth_cred_t cred, int waitfor) in pageflush() argument
537 fsyncwait = (waitfor == MNT_WAIT) ? FSYNC_WAIT : 0; in pageflush()
571 if (waitfor == MNT_LAZY) { in pageflush()
577 if (waitfor == MNT_LAZY) { in pageflush()
592 puffs_vfsop_sync(struct mount *mp, int waitfor, struct kauth_cred *cred) in puffs_vfsop_sync() argument
598 error = pageflush(mp, cred, waitfor); in puffs_vfsop_sync()
602 sync_msg->pvfsr_waitfor = waitfor; in puffs_vfsop_sync()
/netbsd/src/sys/ufs/ext2fs/
Dext2fs_vfsops.c962 ext2fs_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in ext2fs_sync() argument
988 if (vp->v_type == VREG && waitfor == MNT_LAZY) in ext2fs_sync()
992 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0); in ext2fs_sync()
1001 if (waitfor != MNT_LAZY) { in ext2fs_sync()
1004 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0) in ext2fs_sync()
1014 if ((error = ext2fs_cgupdate(ump, waitfor))) in ext2fs_sync()
1305 ext2fs_sbupdate(struct ufsmount *mp, int waitfor) in ext2fs_sbupdate() argument
1313 if (waitfor == MNT_WAIT) in ext2fs_sbupdate()
1321 ext2fs_cgupdate(struct ufsmount *mp, int waitfor) in ext2fs_cgupdate() argument
1327 allerror = ext2fs_sbupdate(mp, waitfor); in ext2fs_cgupdate()
[all …]
/netbsd/src/sys/ufs/ffs/
Dffs_vfsops.c1931 int waitfor; member
1966 (c->waitfor == MNT_LAZY || (LIST_EMPTY(&vp->v_dirtyblkhd) && in ffs_sync_selector()
1979 ffs_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in ffs_sync() argument
1998 ctx.waitfor = waitfor; in ffs_sync()
2002 LK_EXCLUSIVE | (waitfor == MNT_LAZY ? LK_NOWAIT : 0)); in ffs_sync()
2007 if (waitfor == MNT_LAZY) { in ffs_sync()
2016 (waitfor == MNT_WAIT ? FSYNC_WAIT : 0), 0, 0); in ffs_sync()
2027 if (waitfor != MNT_LAZY) { in ffs_sync()
2037 if (waitfor == MNT_WAIT) in ffs_sync()
2062 if ((error = ffs_cgupdate(ump, waitfor))) in ffs_sync()
[all …]
Dffs_inode.c119 int waitfor, flags; in ffs_update() local
135 waitfor = updflags & UPDATE_WAIT; in ffs_update()
137 waitfor |= UPDATE_WAIT; in ffs_update()
139 waitfor = 0; in ffs_update()
191 if (waitfor) { in ffs_update()
/netbsd/src/sys/fs/msdosfs/
Dmsdosfs_vfsops.c1009 int waitfor; member
1021 if (c->waitfor == MNT_LAZY || vp->v_type == VNON || in msdosfs_sync_selector()
1031 msdosfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in msdosfs_sync() argument
1054 ctx.waitfor = waitfor; in msdosfs_sync()
1064 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0) in msdosfs_sync()
1075 waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0)) != 0) in msdosfs_sync()
Dmsdosfs_denode.c333 msdosfs_deupdat(struct denode *dep, int waitfor) in msdosfs_deupdat() argument
337 waitfor ? UPDATE_WAIT : 0)); in msdosfs_deupdat()
/netbsd/src/external/mit/xorg/bin/xfs/
DMakefile18 osinit.c utils.c waitfor.c xfstrans.c
/netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/
Dzfs_vfsops.c100 static int zfs_sync(vfs_t *vfsp, int waitfor);
142 static int zfs_sync(vfs_t *vfsp, int waitfor);
143 static int zfs_netbsd_sync(vfs_t *vfsp, int waitfor, cred_t *cr);
206 zfs_netbsd_sync(vfs_t *vfsp, int waitfor, cred_t *cr) in zfs_netbsd_sync() argument
252 return zfs_sync(vfsp, waitfor); in zfs_netbsd_sync()
431 zfs_sync(vfs_t *vfsp, int waitfor) in zfs_sync() argument
444 if (waitfor == MNT_LAZY) in zfs_sync()
455 error = vfs_stdsync(vfsp, waitfor); in zfs_sync()
/netbsd/src/sys/miscfs/fdesc/
Dfdesc_vfsops.c153 fdesc_sync(struct mount *mp, int waitfor, in fdesc_sync() argument
/netbsd/src/bin/ksh/
Dc_sh.c232 while (waitfor((char *) 0, &sig) >= 0)
237 rv = waitfor(*wp, &sig);
Dproto.h146 int waitfor ARGS((const char *, int *));
/netbsd/src/sys/miscfs/kernfs/
Dkernfs_vfsops.c205 kernfs_sync(struct mount *mp, int waitfor, in kernfs_sync() argument
/netbsd/src/sys/miscfs/genfs/
Dlayer_vfsops.c196 layerfs_sync(struct mount *mp, int waitfor, in layerfs_sync() argument
/netbsd/src/sys/fs/adosfs/
Dadvfsops.c752 adosfs_sync(struct mount *mp, int waitfor, kauth_cred_t uc) in adosfs_sync() argument
755 printf("ad_sync(%p, %d)\n", mp, waitfor); in adosfs_sync()
/netbsd/src/sys/fs/union/
Dunion_vfsops.c493 union_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in union_sync() argument
/netbsd/src/sys/fs/sysvbfs/
Dsysvbfs_vfsops.c291 sysvbfs_sync(struct mount *mp, int waitfor, kauth_cred_t cred) in sysvbfs_sync() argument

12