Searched refs:local_time (Results 1 - 8 of 8) sorted by relevance

/external/libchrome/base/time/
H A Dpr_time_unittest.cc79 struct tm local_time = {0}; local
82 localtime_s(&local_time, &current_time);
83 asctime_s(time_buf, arraysize(time_buf), &local_time);
85 localtime_r(&current_time, &local_time);
86 asctime_r(&local_time, time_buf);
H A Dtime_unittest.cc221 struct tm local_time = {0}; local
224 localtime_s(&local_time, &current_time);
225 asctime_s(time_buf, arraysize(time_buf), &local_time);
227 localtime_r(&current_time, &local_time);
228 asctime_r(&local_time, time_buf);
/external/ImageMagick/MagickCore/
H A Dstring.c1200 local_time;
1206 (void) ResetMagickMemory(&local_time,0,sizeof(local_time));
1209 (void) localtime_r(&time,&local_time);
1217 (void) memcpy(&local_time,my_time,sizeof(local_time));
1232 timezone=(time_t) ((local_time.tm_min-gm_time.tm_min)/60+
1233 local_time.tm_hour-gm_time.tm_hour+24*((local_time.tm_year-
1234 gm_time.tm_year) != 0 ? (local_time
1178 local_time; local
[all...]
/external/libchrome/base/
H A Dlogging.cc785 struct tm local_time; local
786 memset(&local_time, 0, sizeof(local_time));
788 struct tm local_time = {0}; local
791 localtime_s(&local_time, &t);
793 localtime_r(&t, &local_time);
795 struct tm* tm_time = &local_time;
/external/ImageMagick/coders/
H A Dmat.c1406 struct tm local_time;
1434 (void) localtime_r(&current_time,&local_time);
1436 (void) memcpy(&local_time,localtime(&current_time),sizeof(local_time));
1441 OsDesc,DayOfWTab[local_time.tm_wday],MonthsTab[local_time.tm_mon],
1442 local_time.tm_mday,local_time.tm_hour,local_time.tm_min,
1443 local_time
1400 struct tm local_time; local
[all...]
H A Dcin.c935 local_time;
995 (void) localtime_r(&seconds,&local_time);
997 (void) memcpy(&local_time,localtime(&seconds),sizeof(local_time));
1000 (void) strftime(timestamp,MagickPathExtent,"%Y:%m:%d:%H:%M:%S%Z",&local_time);
1098 (void) strftime(timestamp,MagickPathExtent,"%Y:%m:%d:%H:%M:%S%Z",&local_time);
927 local_time; local
H A Dpdf.c1280 local_time;
2836 (void) localtime_r(&seconds,&local_time);
2838 (void) memcpy(&local_time,localtime(&seconds),sizeof(local_time));
2841 local_time.tm_year+1900,local_time.tm_mon+1,local_time.tm_mday,
2842 local_time.tm_hour,local_time.tm_min,local_time
1271 local_time; local
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dfirewire-cdev.h884 * @local_time: system time, in microseconds since the Epoch
894 __u64 local_time; member in struct:fw_cdev_get_cycle_timer

Completed in 257 milliseconds