Searched refs:tm2 (Results 1 - 13 of 13) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_win32.c92 struct tm *tm2; local
95 tm2 = gmtime(&t2);
96 if (tm2 == NULL)
98 tm->sec = tm2->tm_sec;
99 tm->min = tm2->tm_min;
100 tm->hour = tm2->tm_hour;
101 tm->day = tm2->tm_mday;
102 tm->month = tm2->tm_mon + 1;
103 tm->year = tm2->tm_year + 1900;
H A Dos_internal.c69 struct tm *tm2; local
72 tm2 = gmtime(&t2);
73 if (tm2 == NULL)
75 tm->sec = tm2->tm_sec;
76 tm->min = tm2->tm_min;
77 tm->hour = tm2->tm_hour;
78 tm->day = tm2->tm_mday;
79 tm->month = tm2->tm_mon + 1;
80 tm->year = tm2->tm_year + 1900;
H A Dos_unix.c105 struct tm *tm2; local
108 tm2 = gmtime(&t2);
109 if (tm2 == NULL)
111 tm->sec = tm2->tm_sec;
112 tm->min = tm2->tm_min;
113 tm->hour = tm2->tm_hour;
114 tm->day = tm2->tm_mday;
115 tm->month = tm2->tm_mon + 1;
116 tm->year = tm2->tm_year + 1900;
/external/wpa_supplicant_8/src/utils/
H A Dos_win32.c92 struct tm *tm2; local
95 tm2 = gmtime(&t2);
96 if (tm2 == NULL)
98 tm->sec = tm2->tm_sec;
99 tm->min = tm2->tm_min;
100 tm->hour = tm2->tm_hour;
101 tm->day = tm2->tm_mday;
102 tm->month = tm2->tm_mon + 1;
103 tm->year = tm2->tm_year + 1900;
H A Dos_internal.c69 struct tm *tm2; local
72 tm2 = gmtime(&t2);
73 if (tm2 == NULL)
75 tm->sec = tm2->tm_sec;
76 tm->min = tm2->tm_min;
77 tm->hour = tm2->tm_hour;
78 tm->day = tm2->tm_mday;
79 tm->month = tm2->tm_mon + 1;
80 tm->year = tm2->tm_year + 1900;
H A Dos_unix.c105 struct tm *tm2; local
108 tm2 = gmtime(&t2);
109 if (tm2 == NULL)
111 tm->sec = tm2->tm_sec;
112 tm->min = tm2->tm_min;
113 tm->hour = tm2->tm_hour;
114 tm->day = tm2->tm_mday;
115 tm->month = tm2->tm_mon + 1;
116 tm->year = tm2->tm_year + 1900;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_win32.c92 struct tm *tm2; local
95 tm2 = gmtime(&t2);
96 if (tm2 == NULL)
98 tm->sec = tm2->tm_sec;
99 tm->min = tm2->tm_min;
100 tm->hour = tm2->tm_hour;
101 tm->day = tm2->tm_mday;
102 tm->month = tm2->tm_mon + 1;
103 tm->year = tm2->tm_year + 1900;
H A Dos_internal.c69 struct tm *tm2; local
72 tm2 = gmtime(&t2);
73 if (tm2 == NULL)
75 tm->sec = tm2->tm_sec;
76 tm->min = tm2->tm_min;
77 tm->hour = tm2->tm_hour;
78 tm->day = tm2->tm_mday;
79 tm->month = tm2->tm_mon + 1;
80 tm->year = tm2->tm_year + 1900;
H A Dos_unix.c105 struct tm *tm2; local
108 tm2 = gmtime(&t2);
109 if (tm2 == NULL)
111 tm->sec = tm2->tm_sec;
112 tm->min = tm2->tm_min;
113 tm->hour = tm2->tm_hour;
114 tm->day = tm2->tm_mday;
115 tm->month = tm2->tm_mon + 1;
116 tm->year = tm2->tm_year + 1900;
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Do_time.c348 struct tm tm1, tm2; local
352 OPENSSL_gmtime(&t2, &tm2);
355 if ((tm1.tm_year == tm2.tm_year) &&
356 (tm1.tm_mon == tm2.tm_mon) &&
357 (tm1.tm_mday == tm2.tm_mday) &&
358 (tm1.tm_hour == tm2.tm_hour) &&
359 (tm1.tm_min == tm2.tm_min) &&
360 (tm1.tm_sec == tm2.tm_sec))
364 tm2.tm_mday, tm2
[all...]
/external/openssl/crypto/
H A Do_time.c348 struct tm tm1, tm2; local
352 OPENSSL_gmtime(&t2, &tm2);
355 if ((tm1.tm_year == tm2.tm_year) &&
356 (tm1.tm_mon == tm2.tm_mon) &&
357 (tm1.tm_mday == tm2.tm_mday) &&
358 (tm1.tm_hour == tm2.tm_hour) &&
359 (tm1.tm_min == tm2.tm_min) &&
360 (tm1.tm_sec == tm2.tm_sec))
364 tm2.tm_mday, tm2
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dreleasetest.tcl241 set tm2 [clock seconds]
243 set minutes [expr {($tm2-$tm1)/60}]
244 set seconds [expr {($tm2-$tm1)%60}]
/external/eigen/test/
H A Dhouseholder.cpp103 TMatrixType tm2 = m2.transpose(); local
104 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc);

Completed in 276 milliseconds