Home | History | Annotate | Download | only in bionic

Lines Matching refs:clock

60 # define LOCALTIME_R(clock, result) localtime_r(clock, result)
62 # define LOCALTIME_R(clock, result) fake_localtime_r(clock, result)
65 # define GMTIME_R(clock, result) gmtime_r(clock, result)
67 # define GMTIME_R(clock, result) fake_gmtime_r(clock, result)
432 struct tm * fake_localtime_r(const time_t *clock, struct tm *result) {
433 const struct tm *static_result = localtime(clock);
450 struct tm * fake_gmtime_r(const time_t *clock, struct tm *result) {
451 const struct tm *static_result = gmtime(clock);