/development/ndk/platforms/android-3/include/ |
time.h | 74 extern struct tm* localtime_r(const time_t *timep, struct tm *result); 76 extern struct tm* gmtime(const time_t *timep); 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result); 82 extern char *ctime(const time_t *timep); 83 extern char *ctime_r(const time_t *timep, char *buf);
|
/development/ndk/platforms/android-8/include/ |
time.h | 74 extern struct tm* localtime_r(const time_t *timep, struct tm *result); 76 extern struct tm* gmtime(const time_t *timep); 77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result); 82 extern char *ctime(const time_t *timep); 83 extern char *ctime_r(const time_t *timep, char *buf);
|
/external/chromium_org/content/zygote/ |
zygote_main_linux.cc | 184 typedef struct tm* (*LocaltimeFunction)(const time_t* timep); 185 typedef struct tm* (*LocaltimeRFunction)(const time_t* timep, 231 struct tm* localtime_override(const time_t* timep) __asm__ ("localtime"); 234 struct tm* localtime_override(const time_t* timep) { 238 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string, 244 struct tm* res = g_libc_localtime(timep); 255 struct tm* localtime64_override(const time_t* timep) __asm__ ("localtime64"); 258 struct tm* localtime64_override(const time_t* timep) { 262 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string, 268 struct tm* res = g_libc_localtime64(timep); [all...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
localtime.c | 150 static struct tm * gmtsub(const time_t * timep, long offset, 152 static struct tm * localsub(const time_t * timep, long offset, 174 static struct tm * timesub(const time_t * timep, long offset, 1232 localsub(timep, offset, tmp) 1233 const time_t * const timep; 1241 const time_t t = *timep; 1246 return gmtsub(timep, offset, tmp); [all...] |
zic.c | 171 const char * dayp, const char * timep); [all...] |
/external/icu/icu4c/source/tools/tzcode/ |
localtime.c | 150 static struct tm * gmtsub(const time_t * timep, long offset, 152 static struct tm * localsub(const time_t * timep, long offset, 174 static struct tm * timesub(const time_t * timep, long offset, 1232 localsub(timep, offset, tmp) 1233 const time_t * const timep; 1241 const time_t t = *timep; 1246 return gmtsub(timep, offset, tmp); [all...] |
zic.c | 171 const char * dayp, const char * timep); [all...] |
/bionic/libc/tzcode/ |
localtime.c | 161 static struct tm * gmtsub(const time_t * timep, int_fast32_t offset, 163 static struct tm * localsub(const time_t * timep, int_fast32_t offset, 186 static struct tm * timesub(const time_t * timep, int_fast32_t offset, [all...] |
/external/chromium_org/third_party/webrtc/base/ |
timeutils.cc | 116 static struct tm *gmtime_r(const time_t *timep, struct tm *result) { 118 struct tm *tm = gmtime(timep); // NOLINT
|
/external/compiler-rt/lib/dfsan/ |
dfsan_custom.cc | 385 char *__dfsw_ctime_r(const time_t *timep, char *buf, dfsan_label timep_label, 387 char *ret = ctime_r(timep, buf); 389 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), buf, 607 struct tm *__dfsw_localtime_r(const time_t *timep, struct tm *result, 610 struct tm *ret = localtime_r(timep, result); 612 dfsan_set_label(dfsan_read_label(timep, sizeof(time_t)), result,
|
/external/iputils/ |
clockdiff.c | 427 __u32 *timep = (__u32*)(opt+4+i*8+4); local 428 __u32 t = ntohl(*timep);
|