Symbol: gmtoff
usr/src/cmd/smbsrv/smbd/smbd_main.c
885
int32_t gmtoff, last_gmtoff = -1;
usr/src/cmd/smbsrv/smbd/smbd_main.c
892
gmtoff = smbd_gmtoff();
usr/src/cmd/smbsrv/smbd/smbd_main.c
894
if ((last_gmtoff != gmtoff) && smbd.s_kbound) {
usr/src/cmd/smbsrv/smbd/smbd_main.c
895
error = smb_kmod_setgmtoff(gmtoff);
usr/src/cmd/smbsrv/smbd/smbd_main.c
909
last_gmtoff = gmtoff;
usr/src/cmd/smbsrv/smbd/smbd_main.c
927
int32_t gmtoff;
usr/src/cmd/smbsrv/smbd/smbd_main.c
932
gmtoff = (atm->tm_isdst) ? altzone : timezone;
usr/src/cmd/smbsrv/smbd/smbd_main.c
934
return (gmtoff);
usr/src/cmd/zdump/zdump.c
866
long off = gmtoff(tmp, NULL, gmtmp);
usr/src/cmd/zdump/zdump.c
989
long off = gmtoff(tm, &t, NULL);
usr/src/lib/smbsrv/libmlsvc/common/srvsvc_svc.c
1854
time_t gmtoff;
usr/src/lib/smbsrv/libmlsvc/common/srvsvc_svc.c
1881
gmtoff = (tm.tm_isdst) ? altzone : timezone;
usr/src/lib/smbsrv/libmlsvc/common/srvsvc_svc.c
1882
tod->tod_timezone = gmtoff / SECSPERMIN;
usr/src/lib/smbsrv/libsmb/common/smb_kmod.c
136
smb_kmod_setgmtoff(int32_t gmtoff)
usr/src/lib/smbsrv/libsmb/common/smb_kmod.c
140
ioc.offset = gmtoff;
usr/src/stand/lib/fs/hsfs/hsfsops.c
1083
int year, month, day, hour, minute, sec, gmtoff;
usr/src/stand/lib/fs/hsfs/hsfsops.c
1091
gmtoff = HDE_DATE_GMTOFF(dp);
usr/src/stand/lib/fs/hsfs/hsfsops.c
1097
tvp->tv_sec = hs_date_to_gmtime(year, month, day, gmtoff);
usr/src/stand/lib/fs/hsfs/hsfsops.c
1118
int year, month, day, hour, minute, sec, gmtoff;
usr/src/stand/lib/fs/hsfs/hsfsops.c
1126
gmtoff = HSV_DATE_GMTOFF(dp);
usr/src/stand/lib/fs/hsfs/hsfsops.c
1132
tvp->tv_sec = hs_date_to_gmtime(year, month, day, gmtoff);
usr/src/stand/lib/fs/hsfs/hsfsops.c
1161
hs_date_to_gmtime(int year, int mon, int day, int gmtoff)
usr/src/stand/lib/fs/hsfs/hsfsops.c
1190
sum -= (gmtoff * 15 * 60);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
162
int year, month, day, hour, minute, sec, gmtoff;
usr/src/uts/common/fs/hsfs/hsfs_subr.c
170
gmtoff = HDE_DATE_GMTOFF(dp);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
176
tvp->tv_sec = hs_date_to_gmtime(year, month, day, gmtoff);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
199
int year, month, day, hour, minute, sec, gmtoff;
usr/src/uts/common/fs/hsfs/hsfs_subr.c
207
gmtoff = HSV_DATE_GMTOFF(dp);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
213
tvp->tv_sec = hs_date_to_gmtime(year, month, day, gmtoff);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
242
hs_date_to_gmtime(year, mon, day, gmtoff)
usr/src/uts/common/fs/hsfs/hsfs_subr.c
246
int gmtoff;
usr/src/uts/common/fs/hsfs/hsfs_subr.c
275
sum -= (gmtoff * 15 * 60);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
61
static time_t hs_date_to_gmtime(int year, int mon, int day, int gmtoff);