Lines Matching refs:syst
18 SYSTEMTIME syst; in GetDateTime() local
20 ::GetLocalTime(&syst); in GetDateTime()
21 t->fYear = SkToU16(syst.wYear); in GetDateTime()
22 t->fMonth = SkToU8(syst.wMonth); in GetDateTime()
23 t->fDayOfWeek = SkToU8(syst.wDayOfWeek); in GetDateTime()
24 t->fDay = SkToU8(syst.wDay); in GetDateTime()
25 t->fHour = SkToU8(syst.wHour); in GetDateTime()
26 t->fMinute = SkToU8(syst.wMinute); in GetDateTime()
27 t->fSecond = SkToU8(syst.wSecond); in GetDateTime()
46 tm syst; in GetDateTime() local
50 localtime_r(&tm, &syst); in GetDateTime()
51 t->fYear = SkToU16(syst.tm_year); in GetDateTime()
52 t->fMonth = SkToU8(syst.tm_mon + 1); in GetDateTime()
53 t->fDayOfWeek = SkToU8(syst.tm_wday); in GetDateTime()
54 t->fDay = SkToU8(syst.tm_mday); in GetDateTime()
55 t->fHour = SkToU8(syst.tm_hour); in GetDateTime()
56 t->fMinute = SkToU8(syst.tm_min); in GetDateTime()
57 t->fSecond = SkToU8(syst.tm_sec); in GetDateTime()