Searched refs:tvp (Results 1 - 25 of 32) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dtime.h31 static inline void nanotime(struct timespec *tvp) argument
33 *tvp = CURRENT_TIME;
H A Dxfs_iops.c151 timespec_t *tvp; local
167 tvp = &inode->i_mtime;
168 ip->i_d.di_mtime.t_sec = (__int32_t)tvp->tv_sec;
169 ip->i_d.di_mtime.t_nsec = (__int32_t)tvp->tv_nsec;
172 tvp = &inode->i_ctime;
173 ip->i_d.di_ctime.t_sec = (__int32_t)tvp->tv_sec;
174 ip->i_d.di_ctime.t_nsec = (__int32_t)tvp->tv_nsec;
511 bhv_vnode_t *tvp; /* target directory */ local
516 tvp = vn_from_inode(ndir);
518 error = bhv_vop_rename(fvp, odentry, tvp, ndentr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbinc/
H A Dclock.h62 #define timespecclear(tvp) ((tvp)->tv_sec = (tvp)->tv_nsec = 0)
64 #define timespecisset(tvp) ((tvp)->tv_sec || (tvp)->tv_nsec)
66 #define timespeccmp(tvp, uvp, cmp) \
67 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
68 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
69 ((tvp)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/compat/
H A Dpselect.c56 struct timeval tvtimo, *tvp; local
61 tvp = &tvtimo;
63 tvp = 0;
71 rv = select(count, rfds, wfds, efds, tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
H A Dpselect.c56 struct timeval tvtimo, *tvp; local
61 tvp = &tvtimo;
63 tvp = 0;
71 rv = select(count, rfds, wfds, efds, tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_dfrag.c57 bhv_vnode_t *vp, *tvp; local
85 ((tvp = vn_from_inode(tfp->f_path.dentry->d_inode)) == NULL)) {
90 tip = xfs_vtoi(tvp);
137 bhv_vnode_t *vp, *tvp; local
157 tvp = XFS_ITOV(tip);
200 if (VN_CACHED(tvp) != 0) {
202 error = bhv_vop_flushinval_pages(tvp, 0, -1, FI_REMAPF_LOCKED);
208 if (VN_CACHED(tvp) != 0) {
371 VN_HOLD(tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Dwrapped.c453 int utime(char *name,void *tvp) argument
456 return smbw_utime(name, tvp);
459 return real_utime(name, tvp);
464 int utimes(const char *name, const struct timeval *tvp) argument
467 return smbw_utimes(name, tvp);
470 return real_utimes(name, tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dsyscalls.c209 ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp) argument
219 || __get_user(tvp, ((struct timeval __user * __user *)(buffer+4))))
222 return sys_select(n, inp, outp, exp, tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dasyn-ares.c369 struct timeval *tvp, tv, store; local
379 tvp = ares_timeout((ares_channel)data->state.resolver, &store, &tv);
384 if(!tvp->tv_sec)
385 timeout_ms = (int)(tvp->tv_usec/1000);
H A Dopenldap.c266 struct timeval tv = {0,1}, *tvp; local
292 tvp = NULL; /* let ldap_result block indefinitely */
294 tvp = &tv;
316 if(tvp)
320 rc = ldap_result(li->ld, li->msgid, LDAP_MSG_ONE, tvp, &result);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/
H A Dmain.c1442 timeleft(tvp)
1443 struct timeval *tvp;
1449 tvp->tv_sec = callout->c_time.tv_sec - timenow.tv_sec;
1450 tvp->tv_usec = callout->c_time.tv_usec - timenow.tv_usec;
1451 if (tvp->tv_usec < 0) {
1452 tvp->tv_usec += 1000000;
1453 tvp->tv_sec -= 1;
1455 if (tvp->tv_sec < 0)
1456 tvp->tv_sec = tvp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/kernel/
H A Dsys_s390.c126 struct timeval __user *tvp; member in struct:sel_arg_struct
136 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-i386/
H A Dsyscalls.c51 struct timeval __user *tvp; member in struct:sel_arg_struct
61 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/kernel/
H A Dsys_arm.c146 struct timeval *tvp; member in struct:sel_arg_struct
156 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/h8300/kernel/
H A Dsys_h8300.c118 struct timeval *tvp; member in struct:sel_arg_struct
128 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dsys_i386.c106 struct timeval __user *tvp; member in struct:sel_arg_struct
116 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/kernel/
H A Dsys_m68k.c118 struct timeval *tvp; member in struct:sel_arg_struct
128 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dsys_arm.c137 struct timeval __user *tvp; member in struct:sel_arg_struct
147 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestSAX.c80 my_gettimeofday(struct timeval *tvp, void *tzp) argument
85 if (tvp) {
86 tvp->tv_sec = timebuffer.time;
87 tvp->tv_usec = timebuffer.millitm * 1000L;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dsys_sunos.c580 fd_set __user *exp, struct timeval __user *tvp)
584 /* SunOS binaries expect that select won't change the tvp contents */
585 ret = sys_select (width, inp, outp, exp, tvp);
586 if (ret == -EINTR && tvp) {
589 __get_user(sec, &tvp->tv_sec);
590 __get_user(usec, &tvp->tv_usec);
579 sunos_select(int width, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dselect.c384 fd_set __user *exp, struct timeval __user *tvp)
390 if (tvp) {
391 if (copy_from_user(&tv, tvp, sizeof(tv)))
408 if (tvp) {
417 if (copy_to_user(tvp, &rtv, sizeof(rtv))) {
383 sys_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dosf_sys.c973 struct timeval32 __user *tvp)
984 if (tvp) {
987 if (!access_ok(VERIFY_READ, tvp, sizeof(*tvp))
988 || __get_user(sec, &tvp->tv_sec)
989 || __get_user(usec, &tvp->tv_usec)) {
972 osf_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval32 __user *tvp) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Dsys_m68k.c121 struct timeval __user *tvp; member in struct:sel_arg_struct
131 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dpptp_gre.c480 struct timeval *tvp; local
517 tvp = NULL;
519 tvp = &tv;
524 retval = select(max_fd + 1, &rfds, NULL, NULL, tvp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dcompat.h192 struct compat_timeval __user *tvp);

Completed in 163 milliseconds

12