HomeSort by relevance Sort by last modified time
    Searched refs:safe_date (Results 1 - 2 of 2) sorted by null

  /bionic/libc/bionic/
time64.c 487 struct tm safe_date; local
493 copy_TM_to_tm(input_date, &safe_date);
494 return (Time64_T)mktime(&safe_date);
497 /* Have to make the year safe in date else it won't fit in safe_date */
500 copy_TM_to_tm(&date, &safe_date);
502 time = (Time64_T)mktime(&safe_date);
504 time += seconds_between_years(year, (Year)(safe_date.tm_year + 1900));
531 struct tm safe_date; local
532 GMTIME_R(&safe_time, &safe_date);
534 copy_tm_to_TM(&safe_date, p)
646 struct tm safe_date; local
    [all...]
  /external/chromium_org/net/cookies/
cookie_monster.cc     [all...]

Completed in 343 milliseconds