Lines Matching refs:srcTm
62 STATIC VOID OsCopyTm(struct tm *destTm, const struct tm *srcTm)
64 if (srcTm == NULL) {
67 destTm->tm_sec = srcTm->tm_sec;
68 destTm->tm_min = srcTm->tm_min;
69 destTm->tm_hour = srcTm->tm_hour;
70 destTm->tm_mday = srcTm->tm_mday;
71 destTm->tm_mon = srcTm->tm_mon;
72 destTm->tm_year = srcTm->tm_year;
73 destTm->tm_wday = srcTm->tm_wday;
74 destTm->tm_yday = srcTm->tm_yday;
75 destTm->tm_isdst = srcTm->tm_isdst;
76 destTm->tm_gmtoff = srcTm->tm_gmtoff;
77 destTm->tm_zone = srcTm->tm_zone;