HomeSort by relevance Sort by last modified time
    Searched refs:duration_ms (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/
platform_thread_posix.cc 50 void PlatformThread::Sleep(int duration_ms) {
53 // Contains the portion of duration_ms >= 1 sec.
54 sleep_time.tv_sec = duration_ms / 1000;
55 duration_ms -= sleep_time.tv_sec * 1000;
57 // Contains the portion of duration_ms < 1 sec.
58 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
platform_thread_win.cc 43 void PlatformThread::Sleep(int duration_ms) {
44 ::Sleep(duration_ms);
platform_thread.h 46 static void Sleep(int duration_ms);
  /frameworks/base/core/jni/
android_util_Binder.cpp 868 int duration_ms = static_cast<int>(uptimeMillis() - start_millis); local
871 if (duration_ms >= 500) {
874 sample_percent = 100 * duration_ms / 500;
894 if (!push_eventlog_int(&pos, end, duration_ms)) return;
    [all...]

Completed in 503 milliseconds