Searched defs:tm (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java41 * @param tm A {@link X509TrustManager} as returned by TrustManagerFactory.getInstance();
42 * @throws IllegalArgumentException If tm is an unsupported TrustManager type.
44 public X509TrustManagerExtensions(X509TrustManager tm) throws IllegalArgumentException { argument
45 if (tm instanceof TrustManagerImpl) {
46 mDelegate = (TrustManagerImpl) tm;
48 throw new IllegalArgumentException("tm is not a supported type of X509TrustManager");
/frameworks/av/media/mtp/
H A DMtpUtils.cpp38 struct tm tm; local
52 localtime_r(&dummy, &tm);
54 tm.tm_sec = second;
55 tm.tm_min = minute;
56 tm.tm_hour = hour;
57 tm.tm_mday = day;
58 tm.tm_mon = month - 1; // mktime uses months in 0 - 11 range
59 tm.tm_year = year - 1900;
60 tm
71 struct tm tm; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_SystemClock.cpp118 struct timespec tm; local
120 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
122 return tm.tv_sec * 1000LL + tm.tv_nsec / 1000000;
138 struct timespec tm; local
140 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
142 return tm.tv_sec * 1000000LL + tm.tv_nsec / 1000;
H A Dandroid_database_SQLiteConnection.cpp99 static void sqliteProfileCallback(void *data, const char *sql, sqlite3_uint64 tm) { argument
102 connection->label.string(), sql, tm * 0.000001f);
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A Daccessorychat.c70 struct timespec tm; local
72 tm.tv_sec = 0;
73 tm.tv_nsec = millis * 1000000;
74 nanosleep(&tm, NULL);
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h76 llvm::TargetMachine *tm = m_pT->createTargetMachine(pTriple, pCPU, pFeatures, Options, RM, CM, OL); local
77 if (tm)
78 return TargetMachineCtorFn(*this, *tm, pTriple);
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java479 * Translates matrix m by x, y, and z, putting the result in tm.
481 * m and tm must not overlap.
483 * @param tm returns the result
491 public static void translateM(float[] tm, int tmOffset, argument
495 tm[tmOffset + i] = m[mOffset + i];
500 tm[12 + tmi] = m[mi] * x + m[4 + mi] * y + m[8 + mi] * z +
/frameworks/rs/
H A DrsContext.cpp166 void Context::timerSet(Timers tm) { argument
170 mTimerActive = tm;
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp40 struct timespec tm; local
42 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
44 return tm.tv_sec * 1000LL + tm.tv_nsec / 1000000;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2467 struct tm tm; local
2468 localtime_r(&tv.tv_sec, &tm);
2469 strftime(teeTime, sizeof(teeTime), "%Y%m%d%H%M%S", &tm);
/frameworks/base/services/input/
H A DInputDispatcher.cpp3392 struct tm tm; local
3393 localtime_r(&t, &tm);
3395 strftime(timestr, sizeof(timestr), "%F %T", &tm);

Completed in 311 milliseconds