Home
last modified time | relevance | path

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

/dragonfly/sys/vfs/smbfs/
HDsmbfs_subr.c110 smb_time_local2server(struct timespec *tsp, int tzoff, u_long *seconds) in smb_time_local2server() argument
112 *seconds = tsp->tv_sec - tzoff * 60 /*- tz.tz_minuteswest * 60 - in smb_time_local2server()
117 smb_time_server2local(u_long seconds, int tzoff, struct timespec *tsp) in smb_time_server2local() argument
119 tsp->tv_sec = seconds + tzoff * 60; in smb_time_server2local()
132 smb_time_NT2local(int64_t nsec, int tzoff, struct timespec *tsp) in smb_time_NT2local() argument
138 smb_time_local2NT(struct timespec *tsp, int tzoff, int64_t *nsec) in smb_time_local2NT() argument
147 smb_time_unix2dos(struct timespec *tsp, int tzoff, u_int16_t *ddp, in smb_time_unix2dos() argument
157 smb_time_local2server(tsp, tzoff, &t); in smb_time_unix2dos()
214 smb_dos2unixtime(u_int dd, u_int dt, u_int dh, int tzoff, in smb_dos2unixtime() argument
254 smb_time_server2local(seconds + lastseconds, tzoff, tsp); in smb_dos2unixtime()
HDsmbfs_subr.h180 void smb_time_local2server(struct timespec *tsp, int tzoff, u_long *seconds);
181 void smb_time_server2local(u_long seconds, int tzoff, struct timespec *tsp);
182 void smb_time_NT2local(int64_t nsec, int tzoff, struct timespec *tsp);
183 void smb_time_local2NT(struct timespec *tsp, int tzoff, int64_t *nsec);
184 void smb_time_unix2dos(struct timespec *tsp, int tzoff, u_int16_t *ddp,
186 void smb_dos2unixtime (u_int dd, u_int dt, u_int dh, int tzoff, struct timespec *tsp);
HDsmbfs_smb.c306 int error, tzoff; in smbfs_smb_setptime2() local
321 tzoff = vcp->vc_sopt.sv_tz; in smbfs_smb_setptime2()
326 smb_time_unix2dos(atime, tzoff, &date, &time, NULL); in smbfs_smb_setptime2()
332 smb_time_unix2dos(mtime, tzoff, &date, &time, NULL); in smbfs_smb_setptime2()
360 int error, tzoff; in smbfs_smb_setpattrNT() local
375 tzoff = vcp->vc_sopt.sv_tz; in smbfs_smb_setpattrNT()
380 smb_time_local2NT(atime, tzoff, &tm); in smbfs_smb_setpattrNT()
385 smb_time_local2NT(mtime, tzoff, &tm); in smbfs_smb_setpattrNT()
409 int error, tzoff; in smbfs_smb_setftime() local
414 tzoff = SSTOVC(ssp)->vc_sopt.sv_tz; in smbfs_smb_setftime()
[all …]
/dragonfly/usr.bin/find/
HDgetdate.y852 int tzoff; in get_date() local
876 tzoff = difftm (&gmt, tm) / 60; in get_date()
883 tzoff = 0; in get_date()
886 tzoff += 60; in get_date()
892 yyTimezone = tzoff; in get_date()