Home
last modified time | relevance | path

Searched refs:my_time (Results 1 – 3 of 3) sorted by relevance

/external/toolchain-utils/cros_utils/
Dmanifest_versions.py64 def TimeToVersionChromeOS(self, my_time): argument
67 des_time = float(my_time)
73 ' --max-count=1 --before={0} origin/master)'.format(my_time)
112 def TimeToVersion(self, my_time): argument
115 des_time = float(my_time)
121 ' --max-count=1 --before={0} origin/master)'.format(my_time)
/external/ImageMagick/MagickCore/
Dstring.c1209 *my_time; in FormatMagickTime() local
1211 my_time=localtime(&time); in FormatMagickTime()
1212 if (my_time != (struct tm *) NULL) in FormatMagickTime()
1213 (void) memcpy(&local_time,my_time,sizeof(local_time)); in FormatMagickTime()
1221 *my_time; in FormatMagickTime() local
1223 my_time=gmtime(&time); in FormatMagickTime()
1224 if (my_time != (struct tm *) NULL) in FormatMagickTime()
1225 (void) memcpy(&gm_time,my_time,sizeof(gm_time)); in FormatMagickTime()
/external/ltp/testcases/kernel/io/disktest/
Dsfunc.c166 time_t my_time; in pMsg() local
178 time(&my_time); in pMsg()
179 pstruct_time = localtime(&my_time); in pMsg()