Home
last modified time | relevance | path

Searched refs:tzoff (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_time.c126 smb_time_local2server(struct timespec *tsp, int tzoff, long *seconds) in smb_time_local2server() argument
128 if (tsp->tv_sec <= (tzoff * 60)) in smb_time_local2server()
131 *seconds = tsp->tv_sec - (tzoff * 60); in smb_time_local2server()
135 smb_time_server2local(ulong_t seconds, int tzoff, struct timespec *tsp) in smb_time_server2local() argument
140 tsp->tv_sec = seconds + tzoff * 60; in smb_time_server2local()
H A Dsmb_subr.h250 void smb_time_local2server(struct timespec *tsp, int tzoff, long *seconds);
251 void smb_time_server2local(ulong_t seconds, int tzoff, struct timespec *tsp);
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsubr.c241 smb_time_local2server(struct timeval *tsp, int tzoff, long *seconds) in smb_time_local2server() argument
243 *seconds = tsp->tv_sec - tzoff * 60; in smb_time_local2server()
247 smb_time_server2local(ulong_t seconds, int tzoff, struct timeval *tsp) in smb_time_server2local() argument
249 tsp->tv_sec = seconds + tzoff * 60; in smb_time_server2local()
258 smb_time_NT2local(uint64_t nsec, int tzoff, struct timeval *tsp) in smb_time_NT2local() argument
265 smb_time_local2NT(struct timeval *tsp, int tzoff, uint64_t *nsec) in smb_time_local2NT() argument