Searched refs:timezone (Results 1 - 25 of 67) sorted by relevance

123

/external/libpcap/lbl/
H A Dos-ultrix4.h32 struct timezone;
34 int gettimeofday(struct timeval *, struct timezone *);
H A Dos-sunos4.h106 struct timezone;
108 int gettimeofday(struct timeval *, struct timezone *);
183 char *timezone(int, int);
/external/tcpdump/lbl/
H A Dos-ultrix4.h32 struct timezone;
34 int gettimeofday(struct timeval *, struct timezone *);
H A Dos-sunos4.h106 struct timezone;
108 int gettimeofday(struct timeval *, struct timezone *);
183 char *timezone(int, int);
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dsystem_settings_provider.h13 #include "third_party/icu/public/i18n/unicode/timezone.h"
31 virtual void TimezoneChanged(const icu::TimeZone& timezone);
40 // Gets timezone name.
41 static string16 GetTimezoneName(const icu::TimeZone& timezone);
43 // Gets timezone ID which is also used as timezone pref value.
44 static string16 GetTimezoneID(const icu::TimeZone& timezone);
46 // Gets timezone object from its id.
49 // Gets a timezone id from a timezone i
[all...]
H A Dsystem_settings_provider.cc25 #include "unicode/timezone.h"
32 // we still have 400+ zones. Relaxing the criteria for the timezone
167 // Take the last component of a timezone id (e.g. 'Baz' in 'Foo/Bar/Baz').
170 // any timezone for which that's the case.
207 const icu::TimeZone* timezone = GetTimezone(value); local
208 if (!timezone)
210 SystemAccess::GetInstance()->SetTimezone(*timezone);
228 void SystemSettingsProvider::TimezoneChanged(const icu::TimeZone& timezone) { argument
237 const icu::TimeZone* timezone = *iter; local
239 option->Append(Value::CreateStringValue(GetTimezoneID(*timezone)));
246 GetTimezoneName( const icu::TimeZone& timezone) argument
284 GetTimezoneID( const icu::TimeZone& timezone) argument
295 const icu::TimeZone* timezone = *iter; local
[all...]
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dsystem_options.js33 var timezone = $('timezone-select');
34 if (timezone) {
35 // Disable the timezone setting for non-owners, as this is a
38 timezone.disabled = true;
/external/chromium/chrome/browser/chromeos/
H A Dsystem_access.cc20 // The filepath to the timezone file that symlinks to the actual timezone file.
21 const char kTimezoneSymlink[] = "/var/lib/timezone/localtime";
22 const char kTimezoneSymlink2[] = "/var/lib/timezone/localtime2";
24 // The directory that contains all the timezone files. So for timezone
25 // "US/Pacific", the actual timezone file is: "/usr/share/zoneinfo/US/Pacific"
60 virtual void SetTimezone(const icu::TimeZone& timezone);
84 // Look at kTimezoneSymlink, see which timezone we are symlinked to.
89 LOG(ERROR) << "GetTimezoneID: Cannot read timezone symlin
144 SetTimezone(const icu::TimeZone& timezone) argument
183 icu::TimeZone* timezone = local
[all...]
H A Dsystem_access.h11 #include "unicode/timezone.h"
16 // timezone setting.
21 // Called when the timezone has changed. |timezone| is non-null.
22 virtual void TimezoneChanged(const icu::TimeZone& timezone) = 0;
27 // Returns the current timezone as an icu::Timezone object.
30 // Sets the current timezone. |timezone| must be non-null.
31 virtual void SetTimezone(const icu::TimeZone& timezone) = 0;
H A Dmock_system_access.h19 MOCK_METHOD1(SetTimezone, void(const icu::TimeZone& timezone));
/external/kernel-headers/original/asm-x86/
H A Dvsyscall.h37 extern struct timezone sys_tz;
/external/llvm/lib/Support/Unix/
H A DTimeValue.inc44 // errors concern the timezone parameter which we're passing in as 0.
/external/kernel-headers/original/linux/
H A Dandroid_alarm.h46 #define ANDROID_ALARM_SET_TIMEZONE _IOW('a', 6, struct timezone)
H A Dtime.h23 struct timezone { struct
109 extern int do_sys_settimeofday(struct timespec *tv, struct timezone *tz);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTimeZoneTest.java165 assertEquals("timezone not set", zone, TimeZone.getDefault());
175 TimeZone timezone = TimeZone.getTimeZone("Asia/Shanghai");
176 assertEquals("\u4e2d\u56fd\u6807\u51c6\u65f6\u95f4", timezone
184 TimeZone timezone = TimeZone.getTimeZone("Asia/Shanghai");
186 timezone.getDisplayName(false, TimeZone.SHORT, Locale.CHINA));
188 timezone.getDisplayName(false, 100, Locale.CHINA);
/external/icu4c/tools/tzcode/
H A Dicuzdump.cpp16 * This tool write out timezone transitions for ICU timezone. This tool
17 * is used as a part of tzdata update process to check if ICU timezone
29 #include "unicode/timezone.h"
116 timezone = tz;
136 timezone->getOffset(t, FALSE, rawOffset, dstOffset, status);
141 timezone->getOffset(newt, FALSE, newRawOffset, newDstOffset, status);
157 timezone->getOffset(medt, FALSE, medRawOffset, medDstOffset, status);
191 GregorianCalendar* gcal = new GregorianCalendar(timezone, Locale::getEnglish(), status);
202 TimeZone* timezone; member in class:ICUZDump
[all...]
/external/qemu/android/utils/
H A Ddebug.h24 _VERBOSE_TAG(timezone, "host timezone detection" ) \
/external/chromium/third_party/libevent/
H A Devutil.h171 struct timezone;
172 int evutil_gettimeofday(struct timeval *tv, struct timezone *tz);
/external/webrtc/src/system_wrappers/source/
H A Devent_posix.cc147 struct timezone tZone;
257 struct timezone tZone;
/external/chromium/chrome/browser/chromeos/status/
H A Dclock_menu_button.h66 virtual void TimezoneChanged(const icu::TimeZone& timezone);
71 // Updates the time on the menu button. Can be called by host if timezone
/external/chromium/chrome/browser/chromeos/login/
H A Dbase_login_display_host.cc33 #include "unicode/timezone.h"
274 // Set initial timezone if specified by customization.
280 icu::TimeZone* timezone = icu::TimeZone::createTimeZone( local
282 CHECK(timezone) << "Timezone could not be set for " << timezone_name;
283 chromeos::SystemAccess::GetInstance()->SetTimezone(*timezone);
/external/chromium/third_party/libevent/compat/sys/
H A D_libevent_time.h66 struct timezone { struct
H A D_time.h66 struct timezone { struct
/external/qemu/android/
H A Dcmdline-options.h122 OPT_PARAM( timezone, "<timezone>", "use this timezone instead of the host's default" )
/external/tremolo/Tremolo/
H A Dmisc.c92 static struct timezone tz;
149 static struct timezone tz;

Completed in 385 milliseconds

123