Searched refs:tvp (Results 1 – 6 of 6) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/ |
A D | rpc_thread.c | 29 if (tvp != NULL && tvp != &__libc_tsd_RPC_VARS_mem) { in __rpc_thread_destroy() 33 free (tvp->clnt_perr_buf_s); in __rpc_thread_destroy() 37 free (tvp->authdes_lru_s); in __rpc_thread_destroy() 38 free (tvp); in __rpc_thread_destroy() 60 if (tvp == NULL) { in __rpc_thread_variables() 63 if (tvp == NULL) { in __rpc_thread_variables() 64 tvp = calloc (1, sizeof *tvp); in __rpc_thread_variables() 65 if (tvp != NULL) in __rpc_thread_variables() 71 return tvp; in __rpc_thread_variables() 92 return &tvp->svc_fdset_s; in __rpc_thread_svc_fdset() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | lutimes.c | 14 _syscall2(int, lutimes, const char *, file, const struct timeval *, tvp) 19 int lutimes(const char *file, const struct timeval tvp[2]) 23 if (tvp != NULL) 25 if (tvp[0].tv_usec < 0 || tvp[0].tv_usec >= 1000000 26 || tvp[1].tv_usec < 0 || tvp[1].tv_usec >= 1000000) 32 TIMEVAL_TO_TIMESPEC(&tvp[0], &ts[0]); 33 TIMEVAL_TO_TIMESPEC(&tvp[1], &ts[1]); 36 return utimensat(AT_FDCWD, file, tvp ? ts : NULL, AT_SYMLINK_NOFOLLOW);
|
A D | utimes.c | 16 int utimes(const char *file, const struct timeval tvp[2]) in utimes() 19 if (tvp) { in utimes() 21 times[0].tv_sec = tvp[0].tv_sec; in utimes() 22 times[0].tv_nsec = tvp[0].tv_usec * 1000; in utimes() 23 times[1].tv_sec = tvp[1].tv_sec; in utimes() 24 times[1].tv_nsec = tvp[1].tv_usec * 1000; in utimes() 33 _syscall2(int, utimes, const char *, file, const struct timeval *, tvp) 39 int utimes(const char *file, const struct timeval tvp[2]) 43 if (tvp) { 45 times->actime = tvp[0].tv_sec; [all …]
|
A D | futimesat.c | 13 _syscall3(int, futimesat, int, fd, const char *, file, const struct timeval *, tvp)
|
/l4re-core-master/uclibc/lib/contrib/uclibc/include/sys/ |
A D | time.h | 169 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) argument 170 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) argument
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/time/ |
A D | time.c | 2127 int utimes(const char *filename, register const struct timeval *tvp) in libc_hidden_def() 2132 if (tvp) { in libc_hidden_def() 2134 p->actime = tvp[0].tv_sec; in libc_hidden_def() 2135 p->modtime = tvp[1].tv_sec; in libc_hidden_def()
|
Completed in 9 milliseconds