Searched defs:tz (Results 1 - 25 of 189) sorted by relevance

12345678

/external/strace/tests/
H A Dxettimeofday.c42 struct timezone tz; member in struct:__anon17985
54 if (syscall(__NR_gettimeofday, &t.tv, &t.tz))
59 t.tz.tz_minuteswest, t.tz.tz_dsttime);
63 assert(syscall(__NR_settimeofday, &t.tv, &t.tz) == -1);
68 t.tz.tz_minuteswest, t.tz.tz_dsttime);
/external/strace/tests-m32/
H A Dxettimeofday.c42 struct timezone tz; member in struct:__anon18053
54 if (syscall(__NR_gettimeofday, &t.tv, &t.tz))
59 t.tz.tz_minuteswest, t.tz.tz_dsttime);
63 assert(syscall(__NR_settimeofday, &t.tv, &t.tz) == -1);
68 t.tz.tz_minuteswest, t.tz.tz_dsttime);
/external/strace/tests-mx32/
H A Dxettimeofday.c42 struct timezone tz; member in struct:__anon18121
54 if (syscall(__NR_gettimeofday, &t.tv, &t.tz))
59 t.tz.tz_minuteswest, t.tz.tz_dsttime);
63 assert(syscall(__NR_settimeofday, &t.tv, &t.tz) == -1);
68 t.tz.tz_minuteswest, t.tz.tz_dsttime);
/external/icu/icu4c/source/i18n/unicode/
H A Dvtzone.h417 BasicTimeZone *tz; member in class:VTimeZone
/external/icu/icu4c/source/test/intltest/
H A Ditformat.cpp93 TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); local
94 TimeZone::setDefault(*tz);
95 delete tz;
/external/strace/
H A Dtime.c38 struct timezone tz; local
40 if (umove_or_printaddr(tcp, addr, &tz))
44 tz.tz_minuteswest, tz.tz_dsttime);
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DDateFormatter.java50 * @param tz the new time zone
53 DateFormatter withTimeZone(TimeZone tz); argument
H A DDurationFormatter.java42 * @param tz the time zone
76 * @param tz the time zone in which to compute durations.
79 DurationFormatter withTimeZone(TimeZone tz); argument
H A DPeriodBuilder.java56 PeriodBuilder withTimeZone(TimeZone tz); argument
H A DBasicDurationFormatter.java94 public DurationFormatter withTimeZone(TimeZone tz) { argument
95 if (!tz.equals(timeZone)) {
96 PeriodBuilder newBuilder = builder.withTimeZone(tz);
99 : fallback.withTimeZone(tz);
102 localeName, tz);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DDateFormatter.java48 * @param tz the new time zone
51 DateFormatter withTimeZone(TimeZone tz); argument
H A DDurationFormatter.java40 * @param tz the time zone
74 * @param tz the time zone in which to compute durations.
77 DurationFormatter withTimeZone(TimeZone tz); argument
H A DPeriodBuilder.java54 PeriodBuilder withTimeZone(TimeZone tz); argument
H A DBasicDurationFormatter.java93 public DurationFormatter withTimeZone(TimeZone tz) { argument
94 if (!tz.equals(timeZone)) {
95 PeriodBuilder newBuilder = builder.withTimeZone(tz);
98 : fallback.withTimeZone(tz);
101 localeName, tz);
/external/libvncserver/compat/msvc/sys/
H A Dtime.h32 static __inline int gettimeofday(struct timeval *tv, struct timezone *tz) argument
52 if (NULL != tz)
59 tz->tz_minuteswest = _timezone / 60;
60 tz->tz_dsttime = _daylight;
/external/linux-kselftest/tools/testing/selftests/timers/
H A Dset-tz.c1 /* Set tz value
41 struct timezone tz; local
43 tz.tz_minuteswest = min;
44 tz.tz_dsttime = dst;
46 return settimeofday(0, &tz);
51 struct timezone tz; local
54 memset(&tz, 0, sizeof(tz));
55 gettimeofday(&tv, &tz);
56 return tz
61 struct timezone tz; local
[all...]
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcraw_create/
H A Drpc_svcraw_create_performance.c94 struct timezone tz; local
106 gettimeofday(&tv1, &tz);
112 gettimeofday(&tv2, &tz);
/external/icu/icu4c/source/test/compat/
H A Dtzdate.c77 const UChar *tz = 0; local
84 fmt = udat_open(style, style, 0, tz, -1,NULL,0, &status);
/external/icu/icu4c/source/test/perf/normperf/
H A Ddtfmtrtperf.h166 TimeZone *tz = TimeZone::createTimeZone(*tzid); local
173 sdf->setTimeZone(*tz);
197 delete tz;
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_addrmanagmt_pmap_rmtcall/
H A Drpc_pmap_rmtcall_performance.c99 struct timezone tz; local
130 gettimeofday(&tv1, &tz);
139 gettimeofday(&tv2, &tz);
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_broadc_clnt_broadcast/
H A Drpc_clnt_broadcast_performance.c96 struct timezone tz; local
111 gettimeofday(&tv1, &tz);
123 gettimeofday(&tv2, &tz);
H A Drpc_clnt_broadcast_scalability.c96 struct timezone tz; local
111 gettimeofday(&tv1, &tz);
123 gettimeofday(&tv2, &tz);
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/
H A Drpc_clntraw_create_complex.c50 struct timezone tz; local
92 gettimeofday(&tv1, &tz);
99 gettimeofday(&tv2, &tz);
H A Drpc_clntraw_create_performance.c94 struct timezone tz; local
107 gettimeofday(&tv1, &tz);
113 gettimeofday(&tv2, &tz);
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/
H A Drpc_clnttcp_create_performance.c96 struct timezone tz; local
122 gettimeofday(&tv1, &tz);
132 gettimeofday(&tv2, &tz);

Completed in 478 milliseconds

12345678