Lines Matching refs:tm
164 tm_to_time( struct tm* tmP ) in tm_to_time()
200 struct tm tm; in httpdate_to_timet() local
208 memset( (char*) &tm, 0, sizeof(struct tm) ); in httpdate_to_timet()
225 tm.tm_mday = tm_mday; in httpdate_to_timet()
226 tm.tm_mon = tm_mon; in httpdate_to_timet()
227 tm.tm_year = tm_year; in httpdate_to_timet()
228 tm.tm_hour = tm_hour; in httpdate_to_timet()
229 tm.tm_min = tm_min; in httpdate_to_timet()
230 tm.tm_sec = tm_sec; in httpdate_to_timet()
239 tm.tm_mday = tm_mday; in httpdate_to_timet()
240 tm.tm_mon = tm_mon; in httpdate_to_timet()
241 tm.tm_year = tm_year; in httpdate_to_timet()
242 tm.tm_hour = tm_hour; in httpdate_to_timet()
243 tm.tm_min = tm_min; in httpdate_to_timet()
244 tm.tm_sec = tm_sec; in httpdate_to_timet()
253 tm.tm_hour = tm_hour; in httpdate_to_timet()
254 tm.tm_min = tm_min; in httpdate_to_timet()
255 tm.tm_sec = tm_sec; in httpdate_to_timet()
256 tm.tm_mday = tm_mday; in httpdate_to_timet()
257 tm.tm_mon = tm_mon; in httpdate_to_timet()
258 tm.tm_year = tm_year; in httpdate_to_timet()
267 tm.tm_hour = tm_hour; in httpdate_to_timet()
268 tm.tm_min = tm_min; in httpdate_to_timet()
269 tm.tm_sec = tm_sec; in httpdate_to_timet()
270 tm.tm_mday = tm_mday; in httpdate_to_timet()
271 tm.tm_mon = tm_mon; in httpdate_to_timet()
272 tm.tm_year = tm_year; in httpdate_to_timet()
282 tm.tm_wday = tm_wday; in httpdate_to_timet()
283 tm.tm_mday = tm_mday; in httpdate_to_timet()
284 tm.tm_mon = tm_mon; in httpdate_to_timet()
285 tm.tm_year = tm_year; in httpdate_to_timet()
286 tm.tm_hour = tm_hour; in httpdate_to_timet()
287 tm.tm_min = tm_min; in httpdate_to_timet()
288 tm.tm_sec = tm_sec; in httpdate_to_timet()
298 tm.tm_wday = tm_wday; in httpdate_to_timet()
299 tm.tm_mday = tm_mday; in httpdate_to_timet()
300 tm.tm_mon = tm_mon; in httpdate_to_timet()
301 tm.tm_year = tm_year; in httpdate_to_timet()
302 tm.tm_hour = tm_hour; in httpdate_to_timet()
303 tm.tm_min = tm_min; in httpdate_to_timet()
304 tm.tm_sec = tm_sec; in httpdate_to_timet()
314 tm.tm_wday = tm_wday; in httpdate_to_timet()
315 tm.tm_mon = tm_mon; in httpdate_to_timet()
316 tm.tm_mday = tm_mday; in httpdate_to_timet()
317 tm.tm_hour = tm_hour; in httpdate_to_timet()
318 tm.tm_min = tm_min; in httpdate_to_timet()
319 tm.tm_sec = tm_sec; in httpdate_to_timet()
320 tm.tm_year = tm_year; in httpdate_to_timet()
325 if ( tm.tm_year > 1900 ) in httpdate_to_timet()
326 tm.tm_year -= 1900; in httpdate_to_timet()
327 else if ( tm.tm_year < 70 ) in httpdate_to_timet()
328 tm.tm_year += 100; in httpdate_to_timet()
330 t = tm_to_time( &tm ); in httpdate_to_timet()
355 struct tm gm; in timet_to_httpdate()