Searched refs:timeo (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_lock.c569 int timeo, endtime, lastmsg, wentdown = 0; local
736 timeo = 2;
768 endtime = now.tv_sec + timeo;
856 timeo = 2;
894 timeo = 2;
901 timeo *= 2;
902 if (timeo > 60)
903 timeo = 60;
916 timeo = 60;
935 timeo
[all...]
H A Dnfs_syscalls.c703 struct timeval timeo; local
738 timeo.tv_usec = 0;
739 timeo.tv_sec = 1;
740 error |= sock_setsockopt(so, SOL_SOCKET, SO_RCVTIMEO, &timeo, sizeof(timeo));
741 timeo.tv_sec = 30;
742 error |= sock_setsockopt(so, SOL_SOCKET, SO_SNDTIMEO, &timeo, sizeof(timeo));
H A Dnfs.h171 int timeo; /* initial timeout in .1 secs */ member in struct:nfs_args
198 int timeo; /* initial timeout in .1 secs */ member in struct:nfs_args4
224 int timeo; /* initial timeout in .1 secs */ member in struct:nfs_args3
250 int timeo; /* initial timeout in .1 secs */ member in struct:user_nfs_args
277 int timeo; /* initial timeout in .1 secs */ member in struct:user_nfs_args4
302 int timeo; /* initial timeout in .1 secs */ member in struct:user_nfs_args3
H A Dnfs_socket.c196 struct timeval timeo; local
285 timeo.tv_usec = 0;
286 timeo.tv_sec = (nmp->nm_flag & NFSMNT_SOFT) ? 10 : 60;
287 error |= sock_setsockopt(so, SOL_SOCKET, SO_RCVTIMEO, &timeo, sizeof(timeo));
288 error |= sock_setsockopt(so, SOL_SOCKET, SO_SNDTIMEO, &timeo, sizeof(timeo));
2191 int timeo, maxtime, finish_asyncio, error; local
2272 timeo = 4*hz;
2275 timeo
[all...]
H A Dnfs_subs.c1341 int isdir, timeo; local
1349 timeo = isdir ? nmp->nm_acdirmin : nmp->nm_acregmin;
1354 timeo = (now.tv_sec - (np)->n_mtime.tv_sec) / 10;
1356 if (timeo < nmp->nm_acdirmin)
1357 timeo = nmp->nm_acdirmin;
1358 else if (timeo > nmp->nm_acdirmax)
1359 timeo = nmp->nm_acdirmax;
1361 if (timeo < nmp->nm_acregmin)
1362 timeo = nmp->nm_acregmin;
1363 else if (timeo > nm
1381 int32_t timeo; local
[all...]
H A Dnfs_vfsops.c1260 args.timeo = tempargs.timeo;
1586 if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) {
1587 nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
2010 int timeo,
2029 for (try=0; try < timeo; try++) {
2088 int error = 0, auth_len, slen, timeo; local
2105 timeo = (nmp->nm_flag & NFSMNT_SOFT) ? 10 : 60;
2129 error = nfs_aux_request(nmp, thd, &saddr, mreq, R_XID32(xid), timeo, &nmrep);
2160 error = nfs_aux_request(nmp, thd, &saddr, mreq, R_XID32(xid), timeo,
2004 nfs_aux_request( struct nfsmount *nmp, thread_t thd, struct sockaddr_in *saddr, mbuf_t mreq, uint32_t xid, int timeo, struct nfsm_chain *nmrep) argument
[all...]
H A Dnfs_gss.c1561 int timeo = (1 << *retry) * NFS_TRYLATERDEL; local
1569 if (timeo > 60)
1570 timeo = 60;
1573 waituntil = now.tv_sec + timeo;

Completed in 99 milliseconds