Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/ntp/lib/isc/tests/
H A Dsocket_test.c60 waitfor(completion_t *completion) { in waitfor() function
127 waitfor(&completion); in ATF_TC_BODY()
136 waitfor(&completion); in ATF_TC_BODY()
201 waitfor(&completion); in ATF_TC_BODY()
213 waitfor(&completion); in ATF_TC_BODY()
222 waitfor(&completion); in ATF_TC_BODY()
232 waitfor(&completion); in ATF_TC_BODY()
/freebsd-12.1/sys/dev/ppbus/
H A Dpcfclock.c234 char waitfor; in pcfclock_read_data() local
240 waitfor = 100; in pcfclock_read_data()
243 while (!CLOCK_OK && --waitfor > 0) in pcfclock_read_data()
247 if (!waitfor) in pcfclock_read_data()
250 waitfor = 100; /* reload */ in pcfclock_read_data()
/freebsd-12.1/contrib/unbound/util/
H A Dwinsock_event.c106 zero_waitfor(WSAEVENT waitfor[], WSAEVENT x) in zero_waitfor() argument
110 if(waitfor[i] == x) in zero_waitfor()
111 waitfor[i] = 0; in zero_waitfor()
260 base->waitfor[numwait++] = base->items[i]->hEvent; in handle_select()
277 ret = WSAWaitForMultipleEvents(numwait, base->waitfor, in handle_select()
308 if(!base->waitfor[i]) in handle_select()
325 if(!base->waitfor[i]) in handle_select()
334 base->waitfor[i], /* reset the event handle */ in handle_select()
595 zero_waitfor(ev->ev_base->waitfor, ev->hEvent); in event_del()
H A Dwinsock_event.h164 WSAEVENT waitfor[WSK_MAX_ITEMS]; member
/freebsd-12.1/sys/ufs/ffs/
H A Dffs_vfsops.c1510 ffs_sync(mp, waitfor) in ffs_sync() argument
1512 int waitfor;
1535 if (waitfor == MNT_LAZY) {
1538 waitfor = MNT_NOWAIT;
1545 if (waitfor == MNT_SUSPEND) {
1547 waitfor = MNT_WAIT;
1549 if (waitfor == MNT_WAIT)
1899 int waitfor; member
1910 int waitfor;
1932 devfd.waitfor = waitfor;
[all …]
H A Dffs_inode.c82 ffs_update(vp, waitfor) in ffs_update() argument
84 int waitfor;
94 if ((ip->i_flag & IN_MODIFIED) == 0 && waitfor == 0)
145 softdep_update_inodeblock(ip, bp, waitfor);
159 if (waitfor)
H A Dffs_softdep.c473 int waitfor;
4588 jwait(wk, waitfor) in jwait() argument
4590 int waitfor;
12279 if (waitfor) {
12326 if (waitfor == 0) {
12612 sync_cgs(mp, waitfor) in sync_cgs() argument
12614 int waitfor;
12780 waitfor); in softdep_sync_buf()
12860 int error, waitfor; local
12918 int waitfor;
[all …]
H A Dffs_extern.h108 int ffs_syncvnode(struct vnode *vp, int waitfor, int flags);
H A Dffs_vnops.c227 ffs_syncvnode(struct vnode *vp, int waitfor, int flags) in ffs_syncvnode() argument
244 if (DOINGSOFTDEP(vp) && waitfor == MNT_WAIT && in ffs_syncvnode()
277 if (waitfor == MNT_WAIT && bp->b_lblkno <= -UFS_NDADDR && in ffs_syncvnode()
332 if (waitfor != MNT_WAIT) { in ffs_syncvnode()
/freebsd-12.1/sys/sys/
H A Dbufobj.h77 typedef int b_sync_t(struct bufobj *, int waitfor);
136 int bufsync(struct bufobj *bo, int waitfor);
/freebsd-12.1/sys/fs/msdosfs/
H A Dmsdosfs_vfsops.c848 msdosfs_fsiflush(struct msdosfsmount *pmp, int waitfor) in msdosfs_fsiflush() argument
869 if (waitfor == MNT_WAIT) in msdosfs_fsiflush()
879 msdosfs_sync(struct mount *mp, int waitfor) in msdosfs_sync() argument
913 waitfor == MNT_LAZY)) { in msdosfs_sync()
923 error = VOP_FSYNC(vp, waitfor, td); in msdosfs_sync()
933 if (waitfor != MNT_LAZY) { in msdosfs_sync()
935 error = VOP_FSYNC(pmp->pm_devvp, waitfor, td); in msdosfs_sync()
941 error = msdosfs_fsiflush(pmp, waitfor); in msdosfs_sync()
H A Dmsdosfs_denode.c288 deupdat(struct denode *dep, int waitfor) in deupdat() argument
303 if ((dep->de_flag & DE_MODIFIED) == 0 && waitfor == 0) in deupdat()
315 if (waitfor == 0 || (bp->b_flags & B_DELWRI) == 0) { in deupdat()
323 if (waitfor) in deupdat()
H A Ddenode.h282 int deupdat(struct denode *dep, int waitfor);
/freebsd-12.1/sys/fs/ext2fs/
H A Dext2_vfsops.c1117 ext2_sync(struct mount *mp, int waitfor) in ext2_sync() argument
1145 waitfor == MNT_LAZY)) { in ext2_sync()
1157 if ((error = VOP_FSYNC(vp, waitfor, td)) != 0) in ext2_sync()
1166 if (waitfor != MNT_LAZY) { in ext2_sync()
1168 if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0) in ext2_sync()
1179 if ((error = ext2_cgupdate(ump, waitfor)) != 0) in ext2_sync()
1345 ext2_sbupdate(struct ext2mount *mp, int waitfor) in ext2_sbupdate() argument
1366 if (waitfor == MNT_WAIT) in ext2_sbupdate()
1379 ext2_cgupdate(struct ext2mount *mp, int waitfor) in ext2_cgupdate() argument
1385 allerror = ext2_sbupdate(mp, waitfor); in ext2_cgupdate()
[all …]
H A Dext2_inode.c72 ext2_update(struct vnode *vp, int waitfor) in ext2_update() argument
82 if ((ip->i_flag & IN_MODIFIED) == 0 && waitfor == 0) in ext2_update()
100 if (waitfor && !DOINGASYNC(vp)) in ext2_update()
/freebsd-12.1/sys/fs/fuse/
H A Dfuse_io.h71 int fuse_io_flushbuf(struct vnode *vp, int waitfor, struct thread *td);
H A Dfuse_internal.h231 int fuse_internal_fsync(struct vnode *vp, struct thread *td, int waitfor,
/freebsd-12.1/sys/kern/
H A Dvfs_default.c1179 vfs_stdsync(mp, waitfor) in vfs_stdsync() argument
1181 int waitfor;
1189 if (waitfor != MNT_WAIT)
1207 error = VOP_FSYNC(vp, waitfor, td);
1216 vfs_stdnosync (mp, waitfor) in vfs_stdnosync() argument
1218 int waitfor;
/freebsd-12.1/sys/dev/malo/
H A Dif_malohal.c346 const void *data, size_t dsize, int waitfor) in malo_hal_send_helper() argument
354 if (waitfor == MALO_NOWAIT) in malo_hal_send_helper()
407 uint16_t seqnum, int waitfor) in malo_hal_send_main() argument
417 if (waitfor == MALO_NOWAIT) in malo_hal_send_main()
/freebsd-12.1/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c682 tmpfs_sync(struct mount *mp, int waitfor) in tmpfs_sync() argument
685 if (waitfor == MNT_SUSPEND) { in tmpfs_sync()
689 } else if (waitfor == MNT_LAZY) { in tmpfs_sync()
/freebsd-12.1/sys/fs/nullfs/
H A Dnull_vfsops.c353 nullfs_sync(mp, waitfor) in nullfs_sync() argument
355 int waitfor;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIExtensions.txt101 -target-attach -n <executable-name> [--waitfor]
104 Using this with --watifor can do a deffered attach. The flags -n and --waitfor match the syntax of …
/freebsd-12.1/sys/fs/nandfs/
H A Dnandfs_vfsops.c1572 nandfs_sync(struct mount *mp, int waitfor) in nandfs_sync() argument
1576 DPRINTF(SYNC, ("%s: mp %p waitfor %d\n", __func__, mp, waitfor)); in nandfs_sync()
1581 if (waitfor == MNT_LAZY) in nandfs_sync()
1583 if (waitfor == MNT_SUSPEND) in nandfs_sync()
/freebsd-12.1/release/picobsd/tinyware/msh/
H A Dsh3.c282 return(pout==NULL? setstatus(waitfor(i,0)): 0);
503 waitfor(lastpid, canintr) in waitfor() function
808 setstatus(waitfor(i, 1));
H A Dsh.h207 _PROTOTYPE(int waitfor , (int lastpid , int canintr ));

12