Searched defs:tm (Results 1 - 25 of 365) sorted by last modified time

1234567891011>>

/external/xmlrpcpp/src/
H A DXmlRpcValue.h57 XmlRpcValue(struct tm* value) : _type(TypeDateTime)
58 { _value.asTime = new struct tm(*value); }
93 operator struct tm&() { assertTypeOrInvalid(TypeDateTime); return *_value.asTime; }
180 struct tm* asTime;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/hostapd/src/common/
H A Ddpp.c3127 struct os_tm tm; local
3129 if (os_gmtime(conf->netaccesskey_expiry, &tm) < 0) {
3136 tm.year, tm.month, tm.day,
3137 tm.hour, tm.min, tm.sec);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_internal.c60 struct tm tm; local
67 os_memset(&tm, 0, sizeof(tm));
68 tm.tm_year = year - 1900;
69 tm.tm_mon = month - 1;
70 tm.tm_mday = day;
71 tm.tm_hour = hour;
72 tm.tm_min = min;
73 tm
80 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/hs20/server/
H A Dhs20_spp_server.c21 struct tm *tm; local
24 tm = localtime(&t);
27 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
28 tm->tm_hour, tm->tm_min, tm->tm_sec);
H A Dspp_server.c556 struct tm tm; local
559 gmtime_r(&now, &tm);
561 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
562 tm.tm_hour, tm.tm_min, tm.tm_sec);
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/src/common/
H A Ddpp.c3127 struct os_tm tm; local
3129 if (os_gmtime(conf->netaccesskey_expiry, &tm) < 0) {
3136 tm.year, tm.month, tm.day,
3137 tm.hour, tm.min, tm.sec);
/external/wpa_supplicant_8/src/utils/
H A Dos_internal.c60 struct tm tm; local
67 os_memset(&tm, 0, sizeof(tm));
68 tm.tm_year = year - 1900;
69 tm.tm_mon = month - 1;
70 tm.tm_mday = day;
71 tm.tm_hour = hour;
72 tm.tm_min = min;
73 tm
80 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Ddpp.c3127 struct os_tm tm; local
3129 if (os_gmtime(conf->netaccesskey_expiry, &tm) < 0) {
3136 tm.year, tm.month, tm.day,
3137 tm.hour, tm.min, tm.sec);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_internal.c60 struct tm tm; local
67 os_memset(&tm, 0, sizeof(tm));
68 tm.tm_year = year - 1900;
69 tm.tm_mon = month - 1;
70 tm.tm_mday = day;
71 tm.tm_hour = hour;
72 tm.tm_min = min;
73 tm
80 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/webrtc/webrtc/modules/include/
H A Dmodule_common_types.h80 void SetGofInfoVP9(TemporalStructureMode tm) { argument
81 switch (tm) {
/external/webrtc/webrtc/voice_engine/
H A Dtransmit_mixer_unittest.cc31 TransmitMixer* tm = NULL; local
32 ASSERT_EQ(0, TransmitMixer::Create(tm, 0));
33 ASSERT_TRUE(tm != NULL);
35 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(NULL,
37 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
39 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
41 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
43 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
45 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
47 EXPECT_EQ(-1, tm
[all...]
/external/webrtc/webrtc/base/
H A Dsslidentity.cc232 std::tm tm; local
233 tm.tm_year = year;
235 // Read out remaining ASN1 time data and store it in |tm| in documented
236 // std::tm format.
237 tm.tm_mon = ASN1ReadInt(&s, &bytes_left, 2) - 1;
238 tm.tm_mday = ASN1ReadInt(&s, &bytes_left, 2);
239 tm.tm_hour = ASN1ReadInt(&s, &bytes_left, 2);
240 tm.tm_min = ASN1ReadInt(&s, &bytes_left, 2);
241 tm
[all...]
H A Dtimeutils.cc116 static struct tm *gmtime_r(const time_t *timep, struct tm *result) {
118 struct tm *tm = gmtime(timep); // NOLINT local
119 if (tm == NULL) {
122 *result = *tm;
127 void CurrentTmTime(struct tm *tm, int *microseconds) { argument
134 gmtime_r(&secs, tm);
207 int64_t TmToSeconds(const std::tm argument
[all...]

Completed in 358 milliseconds

1234567891011>>