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 492 struct tm safe_date; local
498 copy_TM_to_tm(input_date, &safe_date);
499 return (Time64_T)mktime(&safe_date);
502 /* Have to make the year safe in date else it won't fit in safe_date */
505 copy_TM_to_tm(&date, &safe_date);
507 time = (Time64_T)mktime(&safe_date);
509 time += seconds_between_years(year, (Year)(safe_date.tm_year + 1900));
536 struct tm safe_date; local
537 GMTIME_R(&safe_time, &safe_date);
539 copy_tm_to_TM(&safe_date, p)
651 struct tm safe_date; local
    [all...]
  /external/chromium_org/net/cookies/
cookie_monster.cc     [all...]

Completed in 90 milliseconds