HomeSort by relevance Sort by last modified time
    Searched refs:tzname (Results 1 - 25 of 35) sorted by null

1 2

  /external/qemu/android/utils/
timezone.h 16 * 'tzname' is not in zoneinfo format (e.g. Area/Location)
18 extern int timezone_set( const char* tzname );
timezone.c 66 timezone_set( const char* tzname )
70 if ( !check_timezone_is_zoneinfo(tzname) )
73 len = strlen(tzname);
77 strcpy( android_timezone0, tzname );
686 char tzname[128]; local
698 memset(tzname, 0, sizeof(tzname));
699 strftime(tzname, sizeof(tzname) - 1, "%Z", tm);
702 if ( !strcmp(win32tz->win_name, tzname) ) {
    [all...]
  /system/extras/tests/bionic/libc/common/
test_tm_zone.c 51 printf( "tzname[0] is '%s'\n", tzname[0] ? tzname[0] : "<NULL POINTER>" );
52 printf( "tzname[1] is '%s'\n", tzname[1] ? tzname[1] : "<NULL POINTER>" );
  /external/webkit/JavaScriptCore/icu/unicode/
platform.h 232 #define U_TZNAME tzname
  /external/webkit/JavaScriptGlue/icu/unicode/
platform.h 232 #define U_TZNAME tzname
  /external/webkit/WebCore/icu/unicode/
platform.h 232 #define U_TZNAME tzname
  /external/webkit/WebKit/mac/icu/unicode/
platform.h 232 #define U_TZNAME tzname
  /bionic/libc/include/
time.h 106 extern char* tzname[];
  /development/ndk/platforms/android-3/include/
time.h 88 extern char* tzname[];
  /development/ndk/platforms/android-8/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
time.h 88 extern char* tzname[];
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
time.h 88 extern char* tzname[];
  /external/chromium/third_party/icu/public/common/unicode/
plinux.h 314 #define U_TZNAME tzname
pmac.h 322 #define U_TZNAME tzname
  /external/icu4c/common/unicode/
platform.h 341 #define U_TZNAME tzname
  /external/qemu/telephony/
android_modem.c 1304 char tzname[64]; local
    [all...]
  /bionic/libc/tzcode/
localtime.c 106 ** 1. They might reference tzname[0] before calling tzset (explicitly
108 ** 2. They might reference tzname[1] before calling tzset (explicitly
110 ** 3. They might reference tzname[1] after setting to a time zone
112 ** 4. They might reference tzname[0] after setting to a time zone
117 ** WILDABBR is used. Another possibility: initialize tzname[0] to the
118 ** string "tzname[0] used before set", and similarly for the other cases.
119 ** And another: initialize tzname[0] to "ERA", with an explanation in the
121 ** that tzname[0] has the "normal" length of three characters).
266 char * tzname[2] = { variable
322 tzname[0] = wildabbr
    [all...]
strftime.c 120 extern char * tzname[];
584 pt = _add(tzname[t->tm_isdst != 0],
  /external/chromium/third_party/icu/source/tools/tzcode/
localtime.c 51 ** 1. They might reference tzname[0] before calling tzset (explicitly
53 ** 2. They might reference tzname[1] before calling tzset (explicitly
55 ** 3. They might reference tzname[1] after setting to a time zone
57 ** 4. They might reference tzname[0] after setting to a time zone
62 ** WILDABBR is used. Another possibility: initialize tzname[0] to the
63 ** string "tzname[0] used before set", and similarly for the other cases.
64 ** And another: initialize tzname[0] to "ERA", with an explanation in the
66 ** that tzname[0] has the "normal" length of three characters).
206 char * tzname[2] = { variable
262 tzname[0] = wildabbr
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 51 ** 1. They might reference tzname[0] before calling tzset (explicitly
53 ** 2. They might reference tzname[1] before calling tzset (explicitly
55 ** 3. They might reference tzname[1] after setting to a time zone
57 ** 4. They might reference tzname[0] after setting to a time zone
62 ** WILDABBR is used. Another possibility: initialize tzname[0] to the
63 ** string "tzname[0] used before set", and similarly for the other cases.
64 ** And another: initialize tzname[0] to "ERA", with an explanation in the
66 ** that tzname[0] has the "normal" length of three characters).
206 char * tzname[2] = { variable
262 tzname[0] = wildabbr
    [all...]
  /system/core/libcutils/
tzstrftime.c 50 extern char * tzname[];
534 pt = _add(tzname[t->tm_isdst != 0],

Completed in 308 milliseconds

1 2