Lines Matching refs:tz_info

1214   TIME_ZONE_INFO *tz_info;  member in Time_zone_db
1234 tz_info(tz_info_arg), tz_name(tz_name_arg) in Time_zone_db()
1261 return ::TIME_to_gmt_sec(t, tz_info, in_dst_time_gap); in TIME_to_gmt_sec()
1277 ::gmt_sec_to_TIME(tmp, t, tz_info); in gmt_sec_to_TIME()
1851 TIME_ZONE_INFO *tz_info= NULL; in tz_load_from_open_tables() local
2088 tz_info= (TIME_ZONE_INFO *)alloc_buff; in tz_load_from_open_tables()
2089 memcpy(tz_info, &tmp_tz_info, sizeof(TIME_ZONE_INFO)); in tz_load_from_open_tables()
2102 tz_info->timecnt) + in tz_load_from_open_tables()
2103 ALIGN_SIZE(tz_info->timecnt) + in tz_load_from_open_tables()
2105 ALIGN_SIZE(tz_info->charcnt) + in tz_load_from_open_tables()
2108 tz_info->typecnt))) in tz_load_from_open_tables()
2114 tz_info->ats= (my_time_t *) alloc_buff; in tz_load_from_open_tables()
2115 memcpy(tz_info->ats, ats, tz_info->timecnt * sizeof(my_time_t)); in tz_load_from_open_tables()
2116 alloc_buff+= ALIGN_SIZE(sizeof(my_time_t) * tz_info->timecnt); in tz_load_from_open_tables()
2117 tz_info->types= (uchar *)alloc_buff; in tz_load_from_open_tables()
2118 memcpy(tz_info->types, types, tz_info->timecnt); in tz_load_from_open_tables()
2119 alloc_buff+= ALIGN_SIZE(tz_info->timecnt); in tz_load_from_open_tables()
2121 tz_info->chars= alloc_buff; in tz_load_from_open_tables()
2122 memcpy(tz_info->chars, chars, tz_info->charcnt); in tz_load_from_open_tables()
2123 alloc_buff+= ALIGN_SIZE(tz_info->charcnt); in tz_load_from_open_tables()
2125 tz_info->ttis= (TRAN_TYPE_INFO *)alloc_buff; in tz_load_from_open_tables()
2126 memcpy(tz_info->ttis, ttis, tz_info->typecnt * sizeof(TRAN_TYPE_INFO)); in tz_load_from_open_tables()
2129 if (prepare_tz_info(tz_info, &tz_storage)) in tz_load_from_open_tables()
2137 !(tmp_tzname->tz= new (&tz_storage) Time_zone_db(tz_info, in tz_load_from_open_tables()
2451 TIME_ZONE_INFO tz_info; variable
2508 if (!tz_load(fullname, &tz_info, &tz_storage)) in scan_tz_dir()
2509 print_tz_as_sql(root_name_end + 1, &tz_info); in scan_tz_dir()
2569 if (tz_load(argv[2], &tz_info, &tz_storage)) in main()
2574 print_tz_leaps_as_sql(&tz_info); in main()
2578 if (tz_load(argv[1], &tz_info, &tz_storage)) in main()
2583 print_tz_as_sql(argv[2], &tz_info); in main()
2632 TIME_ZONE_INFO tz_info; in main() local
2701 if (tz_load(fullname, &tz_info, &tz_storage)) in main()
2715 gmt_sec_to_TIME(&time_tmp, (my_time_t)t, &tz_info); in main()
2729 gmt_sec_to_TIME(&time_tmp, (my_time_t)t, &tz_info); in main()
2763 t1= (time_t)TIME_to_gmt_sec(&time_tmp, &tz_info, &not_used_2); in main()