Lines Matching refs:gmt_offset
122 timelib_time_offset *gmt_offset; in timelib_unixtime2local() local
140 gmt_offset = timelib_get_time_zone_info(ts, tz); in timelib_unixtime2local()
141 timelib_unixtime2gmt(tm, ts + gmt_offset->offset); in timelib_unixtime2local()
145 tm->dst = gmt_offset->is_dst; in timelib_unixtime2local()
146 tm->z = gmt_offset->offset; in timelib_unixtime2local()
149 timelib_time_tz_abbr_update(tm, gmt_offset->abbr); in timelib_unixtime2local()
150 timelib_time_offset_dtor(gmt_offset); in timelib_unixtime2local()
193 timelib_time_offset *gmt_offset; in timelib_set_timezone() local
195 gmt_offset = timelib_get_time_zone_info(t->sse, tz); in timelib_set_timezone()
196 t->z = gmt_offset->offset; in timelib_set_timezone()
203 t->dst = gmt_offset->is_dst; in timelib_set_timezone()
208 t->tz_abbr = timelib_strdup(gmt_offset->abbr); in timelib_set_timezone()
209 timelib_time_offset_dtor(gmt_offset); in timelib_set_timezone()