Searched defs:sleep_time (Results 1 - 13 of 13) sorted by relevance

/external/chromium/base/threading/
H A Dplatform_thread_posix.cc142 struct timespec sleep_time, remaining; local
145 sleep_time.tv_sec = duration_ms / 1000;
146 duration_ms -= sleep_time.tv_sec * 1000;
149 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
151 while (nanosleep(&sleep_time, &remaining) == -1 && errno == EINTR)
152 sleep_time = remaining;
/external/chromium_org/tools/xdisplaycheck/
H A Dxdisplaycheck.cc24 struct timespec sleep_time, remaining; local
27 sleep_time.tv_sec = duration_ms / 1000;
28 duration_ms -= sleep_time.tv_sec * 1000;
31 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
33 while (nanosleep(&sleep_time, &remaining) == -1 && errno == EINTR)
34 sleep_time = remaining;
/external/chromium/chrome/browser/metrics/
H A Dthread_watcher.h22 // sleep_time specifies how often ping messages have to be sent to IO thread.
26 // base::TimeDelta sleep_time = base::TimeDelta::FromSeconds(5);
28 // ThreadWatcher::StartWatching(BrowserThread::IO, "IO", sleep_time,
60 // sleep_time and unresponsive_time. sleep_time_ is the wait time between ping
67 const base::TimeDelta& sleep_time,
77 base::TimeDelta sleep_time() const { return sleep_time_; } function in class:ThreadWatcher
97 const base::TimeDelta& sleep_time,
H A Dthread_watcher.cc21 const base::TimeDelta& sleep_time,
25 sleep_time_(sleep_time),
41 const base::TimeDelta& sleep_time,
43 DCHECK_GE(sleep_time.InMilliseconds(), 0);
44 DCHECK_GE(unresponsive_time.InMilliseconds(), sleep_time.InMilliseconds());
53 thread_id, thread_name, sleep_time, unresponsive_time));
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time);
19 ThreadWatcher(const BrowserThread::ID& thread_id, const std::string& thread_name, const base::TimeDelta& sleep_time, const base::TimeDelta& unresponsive_time) argument
39 StartWatching(const BrowserThread::ID& thread_id, const std::string& thread_name, const base::TimeDelta& sleep_time, const base::TimeDelta& unresponsive_time) argument
H A Dthread_watcher_unittest.cc65 const TimeDelta& sleep_time,
67 : ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time),
296 EXPECT_EQ(kSleepTime, io_watcher_->sleep_time());
303 EXPECT_EQ(kSleepTime, webkit_watcher_->sleep_time());
63 CustomThreadWatcher(const BrowserThread::ID thread_id, const std::string thread_name, const TimeDelta& sleep_time, const TimeDelta& unresponsive_time) argument
/external/chromium_org/base/threading/
H A Dplatform_thread_posix.cc177 struct timespec sleep_time, remaining; local
182 sleep_time.tv_sec = duration.InSeconds();
183 duration -= TimeDelta::FromSeconds(sleep_time.tv_sec);
184 sleep_time.tv_nsec = duration.InMicroseconds() * 1000; // nanoseconds
186 while (nanosleep(&sleep_time, &remaining) == -1 && errno == EINTR)
187 sleep_time = remaining;
/external/chromium_org/chrome/browser/metrics/
H A Dthread_watcher.h22 // thread. |sleep_time| specifies how often ping messages have to be sent to
33 // base::TimeDelta sleep_time = base::TimeDelta::FromSeconds(5);
39 // BrowserThread::IO, "IO", sleep_time, unresponsive_time,
78 const base::TimeDelta& sleep_time; member in struct:ThreadWatcher::WatchingParams
93 sleep_time(sleep_time_in),
103 // |sleep_time| is the wait time between ping messages. |unresponsive_time| is
123 base::TimeDelta sleep_time() const { return sleep_time_; } function in class:ThreadWatcher
138 // Construct a ThreadWatcher for the given |thread_id|. |sleep_time| is the
452 const base::TimeDelta& sleep_time,
H A Dthread_watcher_unittest.cc74 const TimeDelta& sleep_time,
76 : ThreadWatcher(WatchingParams(thread_id, thread_name, sleep_time,
438 EXPECT_EQ(kSleepTime, io_watcher_->sleep_time());
445 EXPECT_EQ(kSleepTime, db_watcher_->sleep_time());
72 CustomThreadWatcher(const BrowserThread::ID thread_id, const std::string thread_name, const TimeDelta& sleep_time, const TimeDelta& unresponsive_time) argument
H A Dthread_watcher.cc126 sleep_time_(params.sleep_time),
149 DCHECK_GE(params.sleep_time.InMilliseconds(), 0);
151 params.sleep_time.InMilliseconds());
654 const base::TimeDelta& sleep_time,
673 sleep_time,
651 StartWatching( const BrowserThread::ID& thread_id, const std::string& thread_name, const base::TimeDelta& sleep_time, const base::TimeDelta& unresponsive_time, uint32 unresponsive_threshold, const CrashOnHangThreadMap& crash_on_hang_threads) argument
/external/chromium_org/chrome/test/automation/
H A Dproxy_launcher.cc578 base::TimeDelta sleep_time = base::TimeDelta::FromMilliseconds( local
582 wait_time += sleep_time) {
586 base::PlatformThread::Sleep(sleep_time);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-checker.cc2308 const struct timespec sleep_time = { 0, 500000000 }; // 500 ms local
2309 nanosleep(&sleep_time, NULL);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-checker.cc2307 const struct timespec sleep_time = { 0, 500000000 }; // 500 ms local
2308 nanosleep(&sleep_time, NULL);
/external/srec/srec/test/SRecTest/src/
H A DSRecTest.c1593 LCHAR sleep_time [P_PATH_MAX]; local
1597 sleep_status = srec_test_get_one_command_item ( command_text, P_PATH_MAX, sleep_time, NULL );
1601 convert_string_to_num = lstrtoi ( sleep_time, &time_as_number, 10 );

Completed in 619 milliseconds