Searched defs:tm (Results 176 - 200 of 365) sorted by relevance

1234567891011>>

/external/v8/src/base/platform/
H A Dplatform-linux.cc97 struct tm tm; local
98 struct tm* t = localtime_r(&tv, &tm);
105 struct tm tm; local
106 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-macos.cc105 struct tm tm; local
106 struct tm* t = localtime_r(&tv, &tm);
114 struct tm tm; local
115 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-openbsd.cc40 struct tm tm; local
41 struct tm* t = localtime_r(&tv, &tm);
49 struct tm tm; local
50 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-qnx.cc91 struct tm tm; local
92 struct tm* t = localtime_r(&tv, &tm);
100 struct tm tm; local
101 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-solaris.cc41 struct tm tm; local
42 struct tm* t = localtime_r(&tv, &tm);
/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...]
/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/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/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/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/adhd/cras/src/server/
H A Dcras_server.c412 struct cras_tm *tm; local
491 tm = cras_system_state_get_tm();
492 if (!tm) {
499 cras_tm_create_timer(tm, OUTPUT_CHECK_MS, check_output_exists, 0);
530 timers_active = cras_tm_get_next_timeout(tm, &ts);
537 cras_tm_call_callbacks(tm);
/external/adhd/cras/src/tests/
H A Dbt_device_unittest.cc311 struct cras_tm *tm,
319 void cras_tm_cancel_timer(struct cras_tm *tm, struct cras_timer *t) argument
310 cras_tm_create_timer( struct cras_tm *tm, unsigned int ms, void (*cb)(struct cras_timer *t, void *data), void *cb_data) argument
H A Dsystem_state_unittest.cc428 void cras_tm_deinit(cras_tm *tm) { argument
429 free(tm);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc213 ThreadMutex *tm = &lt->locked[lt->nlocked++]; local
214 tm->id = m->id;
216 tm->stk = cb->Unwind();
300 ThreadMutex *tm = &lt->locked[lt->nlocked++]; local
301 tm->id = m->id;
303 tm->stk = cb->Unwind();
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DPlatform.java365 private static boolean checkTrusted(String methodName, X509TrustManager tm, argument
370 Method method = tm.getClass().getMethod(
372 method.invoke(tm, chain, authType, argumentInstance);
386 public static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, argument
388 if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket)
389 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class,
391 tm.checkClientTrusted(chain, authType);
396 public static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, argument
398 if (!checkTrusted("checkServerTrusted", tm, chain, authType, Socket.class, socket)
399 && !checkTrusted("checkServerTrusted", tm, chai
406 checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, ConscryptEngine engine) argument
416 checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, ConscryptEngine engine) argument
[all...]
/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DPlatform.java173 private static boolean checkTrusted(String methodName, X509TrustManager tm, argument
178 Method method = tm.getClass().getMethod(
180 method.invoke(tm, chain, authType, argumentInstance);
192 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, argument
194 if (tm instanceof X509ExtendedTrustManager) {
195 X509ExtendedTrustManager x509etm = (X509ExtendedTrustManager) tm;
197 } else if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket)
198 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class,
200 tm.checkClientTrusted(chain, authType);
204 static void checkServerTrusted(X509TrustManager tm, X509Certificat argument
216 checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, ConscryptEngine engine) argument
228 checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, ConscryptEngine engine) argument
[all...]
/external/curl/lib/
H A Dparsedate.c271 /* this is a clone of 'struct tm' but with all fields we don't need or use
282 /* struct tm to time since epoch in GMT time zone.
287 static time_t my_timegm(struct my_tm *tm) argument
293 if(tm->tm_year < 70)
298 year = tm->tm_year + 1900;
299 month = tm->tm_mon;
309 leap_days = year - (tm->tm_mon <= 1);
314 + leap_days + month_days_cumulative [month] + tm->tm_mday - 1) * 24
315 + tm->tm_hour) * 60 + tm
340 struct my_tm tm; local
570 const struct tm *tm; local
[all...]
/external/honggfuzz/includes/libcommon/
H A Dutil.c177 void util_getLocalTime(const char* fmt, char* buf, size_t len, time_t tm) { argument
178 struct tm ltime;
179 localtime_r(&tm, &ltime);
/external/honggfuzz/libcommon/
H A Dutil.c177 void util_getLocalTime(const char* fmt, char* buf, size_t len, time_t tm) { argument
178 struct tm ltime;
179 localtime_r(&tm, &ltime);
/external/iproute2/tc/
H A Dm_ipt.c502 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
504 print_tm(f, tm);
H A Dm_pedit.c787 struct tcf_t *tm = RTA_DATA(tb[TCA_PEDIT_TM]); local
789 print_tm(f, tm);
H A Dm_xt_old.c425 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
427 print_tm(f, tm);
/external/iptables/extensions/
H A Dlibxt_time.c96 struct tm tm; local
140 tm.tm_year = year - 1900;
141 tm.tm_mon = month - 1;
142 tm.tm_mday = day;
143 tm.tm_hour = hour;
144 tm.tm_min = minute;
145 tm.tm_sec = second;
146 tm.tm_isdst = 0;
153 ret = mktime(&tm);
[all...]
/external/libexif/libexif/
H A Dexif-entry.c1628 struct tm tms;
1630 struct tm *tm; local
1634 tm = localtime_r (&t, &tms);
1636 tm = localtime (&t);
1645 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
1646 tm->tm_hour, tm
[all...]

Completed in 1040 milliseconds

1234567891011>>