Home
last modified time | relevance | path

Searched refs:do_gmt (Results 1 – 2 of 2) sorted by relevance

/external/e2fsprogs/debugfs/
Dutil.c193 static int do_gmt = -1; in time_to_string() local
197 if (do_gmt == -1) { in time_to_string()
202 do_gmt = !strcmp(tz, "GMT"); in time_to_string()
205 return asctime((do_gmt) ? gmtime(&t) : localtime(&t)); in time_to_string()
/external/e2fsprogs/e2fsck/
Dmessage.c216 static int do_gmt = -1; in print_time() local
220 if (do_gmt == -1) { in print_time()
224 do_gmt = !strcmp(time_str, "GMT0"); in print_time()
227 time_str = asctime((do_gmt > 0) ? gmtime(&t) : localtime(&t)); in print_time()