Lines Matching defs:level
12 bool ConvertUtcFileTimeToString2(const FILETIME &utc, unsigned ns100, char *s, int level) throw()
42 if (level > kTimestampPrintLevel_DAY)
47 if (level >= kTimestampPrintLevel_SEC)
51 if (level > kTimestampPrintLevel_SEC)
73 if (numDigits > (unsigned)level)
74 numDigits = (unsigned)level;
77 if (level >= kTimestampPrintLevel_NTFS + 1)
80 if (level >= kTimestampPrintLevel_NTFS + 2)
92 bool ConvertUtcFileTimeToString(const FILETIME &utc, char *s, int level) throw()
94 return ConvertUtcFileTimeToString2(utc, 0, s, level);
97 bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, wchar_t *dest, int level) throw()
100 bool res = ConvertUtcFileTimeToString2(ft, ns100, s, level);
111 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *dest, int level) throw()
114 bool res = ConvertUtcFileTimeToString(ft, s, level);
140 int level = 0;
143 level = 7;
145 level = prec - 16;
147 ConvertUtcFileTimeToString(prop.filetime, dest, level);
173 int level = 0;
176 level = 7;
178 level = prec - 16;
180 ConvertUtcFileTimeToString(prop.filetime, dest, level);