Home
last modified time | relevance | path

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

/xnu-12377.81.4/bsd/vfs/
H A Dvfs_bio.c119 static buf_t getnewbuf(int slpflag, int slptimeo, int *queue);
122 static errno_t buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo);
1855 buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo) in buf_invalidateblks() argument
1910 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks()
1985 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks()
3245 buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation) in buf_getblk() argument
3285 ts.tv_sec = (slptimeo / 1000); in buf_getblk()
3286 ts.tv_nsec = (slptimeo % 1000) * 10 * NSEC_PER_USEC * 1000; in buf_getblk()
3297 if (err && ((slpflag & PCATCH) || ((err == EWOULDBLOCK) && slptimeo))) { in buf_getblk()
3442 if ((bp = getnewbuf(slpflag, slptimeo, &queue)) == NULL) { in buf_getblk()
[all …]
/xnu-12377.81.4/bsd/sys/
H A Dbuf.h751 int buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo);
1020 buf_t buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation);