OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tm1
(Results
1 - 5
of
5
) sorted by null
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_unix.c
48
struct tm tm, *
tm1
;
local
68
tm1
= localtime(&t_local);
69
if (
tm1
) {
70
t1 = mktime(
tm1
);
71
tm1
= gmtime(&t_local);
72
if (
tm1
) {
73
t2 = mktime(
tm1
);
os_win32.c
58
struct tm tm, *
tm1
;
local
78
tm1
= localtime(&t_local);
79
if (
tm1
) {
80
t1 = mktime(
tm1
);
81
tm1
= gmtime(&t_local);
82
if (
tm1
) {
83
t2 = mktime(
tm1
);
/external/wpa_supplicant_8/src/utils/
os_win32.c
53
struct tm tm, *
tm1
;
local
73
tm1
= localtime(&t_local);
74
if (
tm1
) {
75
t1 = mktime(
tm1
);
76
tm1
= gmtime(&t_local);
77
if (
tm1
) {
78
t2 = mktime(
tm1
);
os_unix.c
66
struct tm tm, *
tm1
;
local
86
tm1
= localtime(&t_local);
87
if (
tm1
) {
88
t1 = mktime(
tm1
);
89
tm1
= gmtime(&t_local);
90
if (
tm1
) {
91
t2 = mktime(
tm1
);
/external/openssl/crypto/
o_time.c
348
struct tm
tm1
, tm2;
local
353
OPENSSL_gmtime(&t1, &
tm1
);
354
OPENSSL_gmtime_adj(&
tm1
, 0, offset);
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))
367
tm1
.tm_mday, tm1.tm_mon + 1, tm1.tm_year + 1900
[
all
...]
Completed in 33 milliseconds