| /freebsd-12.1/contrib/ntp/lib/isc/tests/ |
| H A D | socket_test.c | 60 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 D | pcfclock.c | 234 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 D | winsock_event.c | 106 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 D | winsock_event.h | 164 WSAEVENT waitfor[WSK_MAX_ITEMS]; member
|
| /freebsd-12.1/sys/ufs/ffs/ |
| H A D | ffs_vfsops.c | 1510 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 D | ffs_inode.c | 82 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 D | ffs_softdep.c | 473 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 D | ffs_extern.h | 108 int ffs_syncvnode(struct vnode *vp, int waitfor, int flags);
|
| H A D | ffs_vnops.c | 227 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 D | bufobj.h | 77 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 D | msdosfs_vfsops.c | 848 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 D | msdosfs_denode.c | 288 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 D | denode.h | 282 int deupdat(struct denode *dep, int waitfor);
|
| /freebsd-12.1/sys/fs/ext2fs/ |
| H A D | ext2_vfsops.c | 1117 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 D | ext2_inode.c | 72 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 D | fuse_io.h | 71 int fuse_io_flushbuf(struct vnode *vp, int waitfor, struct thread *td);
|
| H A D | fuse_internal.h | 231 int fuse_internal_fsync(struct vnode *vp, struct thread *td, int waitfor,
|
| /freebsd-12.1/sys/kern/ |
| H A D | vfs_default.c | 1179 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 D | if_malohal.c | 346 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 D | tmpfs_vfsops.c | 682 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 D | null_vfsops.c | 353 nullfs_sync(mp, waitfor) in nullfs_sync() argument 355 int waitfor;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MIExtensions.txt | 101 -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 D | nandfs_vfsops.c | 1572 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 D | sh3.c | 282 return(pout==NULL? setstatus(waitfor(i,0)): 0); 503 waitfor(lastpid, canintr) in waitfor() function 808 setstatus(waitfor(i, 1));
|
| H A D | sh.h | 207 _PROTOTYPE(int waitfor , (int lastpid , int canintr ));
|