Searched defs:tzoff (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsubr.c241 smb_time_local2server(struct timeval *tsp, int tzoff, long *seconds) argument
243 *seconds = tsp->tv_sec - tzoff * 60;
247 smb_time_server2local(ulong_t seconds, int tzoff, struct timeval *tsp) argument
249 tsp->tv_sec = seconds + tzoff * 60;
258 smb_time_NT2local(uint64_t nsec, int tzoff, struct timeval *tsp) argument
265 smb_time_local2NT(struct timeval *tsp, int tzoff, uint64_t *nsec) argument
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_time.c179 smb_time_local2server(struct timespec *tsp, int tzoff, long *seconds) argument
181 if (tsp->tv_sec <= (tzoff * 60))
184 *seconds = tsp->tv_sec - (tzoff * 60);
188 smb_time_server2local(ulong_t seconds, int tzoff, struct timespec *tsp) argument
193 tsp->tv_sec = seconds + tzoff * 60;
202 smb_time_unix2dos(struct timespec *tsp, int tzoff, u_int16_t *ddp, argument
215 smb_time_local2server(tsp, tzoff, &t);
293 smb_dos2unixtime(uint_t dd, uint_t dt, uint_t dh, int tzoff, argument
338 smb_time_server2local(seconds + lastseconds, tzoff, tsp);
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_smb.c975 int error, tzoff; local
981 tzoff = SSTOVC(ssp)->vc_sopt.sv_tz;
988 smb_time_unix2dos(atime, tzoff, &date, &time, NULL);
994 smb_time_unix2dos(mtime, tzoff, &date, &time, NULL);

Completed in 51 milliseconds