Searched refs:slptimeo (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_bio.c124 static buf_t getnewbuf(int slpflag, int slptimeo, int *queue);
127 static errno_t buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo);
1435 buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo) argument
1486 if ( (error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo)) ) {
1557 if ( (error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo)) ) {
2859 buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation) argument
2899 ts.tv_sec = (slptimeo/1000);
2900 ts.tv_nsec = (slptimeo % 1000) * 10 * NSEC_PER_USEC * 1000;
2911 if (err && ((slpflag & PCATCH) || ((err == EWOULDBLOCK) && slptimeo)))
3008 if ((bp = getnewbuf(slpflag, slptimeo,
3320 getnewbuf(int slpflag, int slptimeo, int * queue) argument
3685 buf_acquire(buf_t bp, int flags, int slpflag, int slptimeo) argument
3699 buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo) argument
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_bio.c1332 nfs_buf_acquire(struct nfsbuf *bp, int flags, int slpflag, int slptimeo) argument
1347 ts.tv_sec = (slptimeo/100);
1349 ts.tv_nsec = (slptimeo % 100) * 10 * NSEC_PER_USEC * 1000;
3249 int error = 0, error2, slptimeo = 0, slpflag = 0; local
3303 while ((error = nfs_buf_acquire(bp, flags, slpflag, slptimeo))) {
3319 slptimeo = 2 * hz;
3369 while ((error = vnode_waitforwrites(NFSTOV(np), 0, slpflag, slptimeo, "nfsflush"))) {
3377 slptimeo = 2 * hz;
3463 int slptimeo)
3489 while ((error = nfs_buf_acquire(bp, NBAC_REMOVE, slpflag, slptimeo))) {
3457 nfs_vinvalbuf_internal( nfsnode_t np, int flags, thread_t thd, kauth_cred_t cred, int slpflag, int slptimeo) argument
3622 int error, slpflag, slptimeo, nflags, retry = 0; local
[all...]

Completed in 33 milliseconds