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

/external/chromium_org/content/zygote/
H A Dzygote_main_linux.cc138 typedef struct tm* (*LocaltimeFunction)(const time_t* timep);
139 typedef struct tm* (*LocaltimeRFunction)(const time_t* timep,
185 struct tm* localtime_override(const time_t* timep) __asm__ ("localtime");
188 struct tm* localtime_override(const time_t* timep) { argument
192 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
198 return g_libc_localtime(timep);
204 struct tm* localtime64_override(const time_t* timep) __asm__ ("localtime64");
207 struct tm* localtime64_override(const time_t* timep) { argument
211 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
217 return g_libc_localtime64(timep);
226 localtime_r_override(const time_t* timep, struct tm* result) argument
242 localtime64_r_override(const time_t* timep, struct tm* result) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c150 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);
1324 localtime(timep)
1325 const time_t * const timep;
1328 return localsub(timep,
[all...]
H A Dzic.c171 const char * dayp, const char * timep);
1387 rulesub(rp, loyearp, hiyearp, typep, monthp, dayp, timep)
1394 const char * const timep;
1408 dp = ecpyalloc(timep);
/external/icu4c/tools/tzcode/
H A Dlocaltime.c150 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);
1324 localtime(timep)
1325 const time_t * const timep;
1328 return localsub(timep,
[all...]
H A Dzic.c171 const char * dayp, const char * timep);
1387 rulesub(rp, loyearp, hiyearp, typep, monthp, dayp, timep)
1394 const char * const timep;
1408 dp = ecpyalloc(timep);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dtimeutils.cc124 static struct tm *gmtime_r(const time_t *timep, struct tm *result) { argument
126 struct tm *tm = gmtime(timep); // NOLINT
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc406 INTERCEPTOR(void *, localtime, unsigned long *timep) {
408 COMMON_INTERCEPTOR_ENTER(ctx, localtime, timep);
409 void *res = REAL(localtime)(timep);
411 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
416 INTERCEPTOR(void *, localtime_r, unsigned long *timep, void *result) {
418 COMMON_INTERCEPTOR_ENTER(ctx, localtime_r, timep, result);
419 void *res = REAL(localtime_r)(timep, result);
421 COMMON_INTERCEPTOR_READ_RANGE(ctx, timep, sizeof(*timep));
[all...]
/external/iputils/
H A Dclockdiff.c427 __u32 *timep = (__u32*)(opt+4+i*8+4); local
428 __u32 t = ntohl(*timep);

Completed in 200 milliseconds