HomeSort by relevance Sort by last modified time
    Searched refs:PlatformThread (Results 76 - 100 of 301) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/worker/
worker_main.cc 31 base::PlatformThread::SetName("CrWorkerMain");
  /external/chromium_org/dbus/
test_server.cc 27 base::PlatformThread::Join(dbus_thread->thread_handle());
dbus_statistics.cc 66 origin_thread_id_(base::PlatformThread::CurrentId()) {
70 DCHECK_EQ(origin_thread_id_, base::PlatformThread::CurrentId());
86 if (base::PlatformThread::CurrentId() != origin_thread_id_) {
88 << base::PlatformThread::CurrentId();
109 DCHECK_EQ(origin_thread_id_, base::PlatformThread::CurrentId());
  /external/chromium/chrome/browser/net/
url_info_unittest.cc 70 base::PlatformThread::Sleep(25);
81 base::PlatformThread::Sleep(kMockExpirationTime + 20);
  /external/chromium_org/base/threading/
simple_thread.h 58 class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
104 // Overridden from PlatformThread::Delegate:
110 PlatformThread::SetThreadPriority(thread_, priority);
117 PlatformThreadHandle thread_; // PlatformThread handle, invalid after Join!
thread_unittest.cc 39 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(500));
156 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(10));
175 &base::PlatformThread::Sleep),
  /external/chromium_org/chrome/browser/chromeos/dbus/
cros_dbus_service.cc 34 origin_thread_id_(base::PlatformThread::CurrentId()),
85 return base::PlatformThread::CurrentId() == origin_thread_id_;
  /external/chromium_org/content/browser/
power_save_blocker_mac.cc 58 DCHECK_EQ(base::PlatformThread::CurrentId(),
88 DCHECK_EQ(base::PlatformThread::CurrentId(),
  /external/chromium_org/media/audio/
cross_process_notification_win.cc 100 class ExtraWaitThread : public base::PlatformThread::Delegate {
125 base::PlatformThread::Create(0, extra_wait_thread.get(), &handle);
145 base::PlatformThread::Join(base::PlatformThreadHandle(next_thread));
161 base::PlatformThread::Join(base::PlatformThreadHandle(next_thread));
234 base::PlatformThread::Create(0, &wait_thread, &thread);
253 base::PlatformThread::Join(thread);
  /external/chromium_org/chrome_frame/
metrics_service.cc 258 thread_ = base::PlatformThread::CurrentId();
290 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
345 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
363 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
378 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
398 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
418 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
  /external/chromium_org/base/memory/
shared_memory_unittest.cc 39 class MultipleThreadMain : public PlatformThread::Delegate {
49 // PlatformThread::Delegate interface.
65 PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(1));
93 class MultipleLockThread : public PlatformThread::Delegate {
98 // PlatformThread::Delegate interface.
120 PlatformThread::Sleep(TimeDelta::FromMilliseconds(1));
279 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth));
285 PlatformThread::Join(thread_handles[index]);
308 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth));
314 PlatformThread::Join(thread_handles[index])
    [all...]
  /external/chromium/base/threading/
thread_unittest.cc 38 base::PlatformThread::Sleep(msec_);
50 base::PlatformThread::Sleep(500);
177 base::PlatformThread::Sleep(10);
thread.h 29 class BASE_API Thread : PlatformThread::Delegate {
157 // PlatformThread::Delegate methods:
  /external/chromium/chrome/browser/
browser_main_posix.cc 76 class ShutdownDetector : public base::PlatformThread::Delegate {
115 base::PlatformThread::SetName("CrShutdownDetector");
251 if (!base::PlatformThread::CreateNonJoinable(
  /external/chromium_org/remoting/base/
auto_thread.cc 116 base::PlatformThread::Join(thread_);
130 if (!base::PlatformThread::Create(0, this, &thread_)) {
186 base::PlatformThread::SetName(name_.c_str());
  /external/chromium/base/metrics/
stats_table_unittest.cc 104 PlatformThread::Sleep(index % 10); // short wait
183 PlatformThread::Sleep(index % 10); // short wait
322 PlatformThread::Sleep(kRunMs);
329 PlatformThread::Sleep(kRunMs);
355 PlatformThread::Sleep(kRunMs);
362 PlatformThread::Sleep(kRunMs);
392 PlatformThread::Sleep(kRunMs);
402 PlatformThread::Sleep(kRunMs);
  /external/chromium_org/base/metrics/
stats_table_unittest.cc 107 PlatformThread::Sleep(TimeDelta::FromMilliseconds(index % 10));
191 PlatformThread::Sleep(TimeDelta::FromMilliseconds(index % 10));
332 PlatformThread::Sleep(kDuration);
339 PlatformThread::Sleep(kDuration);
367 PlatformThread::Sleep(kDuration);
374 PlatformThread::Sleep(kDuration);
405 PlatformThread::Sleep(kDuration);
415 PlatformThread::Sleep(kDuration);
  /external/chromium_org/base/timer/
timer.cc 141 thread_id_ = static_cast<int>(PlatformThread::CurrentId());
146 thread_id_ == static_cast<int>(PlatformThread::CurrentId()));
  /external/chromium_org/chrome/browser/net/
url_info_unittest.cc 70 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(25));
81 base::PlatformThread::Sleep(kMockExpirationTime +
  /external/chromium/chrome/common/deprecated/
event_sys_unittest.cc 143 public base::PlatformThread::Delegate {
153 base::PlatformThread::Join(threads_[i].thread);
176 ASSERT_TRUE(base::PlatformThread::Create(0, this, &info.thread));
185 // PlatformThread::Delegate methods.
219 base::PlatformThread::YieldCurrentThread();
  /external/chromium/chrome/common/
service_process_util_linux.cc 32 base::PlatformThread::Sleep(100 * i);
  /external/chromium/crypto/
openssl_util.cc 21 return static_cast<unsigned long>(base::PlatformThread::CurrentId());
  /external/chromium/net/base/
directory_lister.h 30 public base::PlatformThread::Delegate {
84 // PlatformThread::Delegate implementation
  /external/chromium_org/base/
observer_list_threadsafe.h 115 base::PlatformThreadId thread_id = base::PlatformThread::CurrentId();
133 base::PlatformThreadId thread_id = base::PlatformThread::CurrentId();
249 observer_lists_.find(base::PlatformThread::CurrentId());
274 observer_lists_.find(base::PlatformThread::CurrentId());
  /external/chromium_org/base/test/
sequenced_task_runner_test_template.h 143 task_runner, Bind(&PlatformThread::Sleep, TimeDelta::FromSeconds(1)));
166 Bind(&PlatformThread::Sleep, TimeDelta::FromSeconds(1)));
316 task_runner, base::Bind(&PlatformThread::Sleep,
345 task_runner, base::Bind(&PlatformThread::Sleep,

Completed in 391 milliseconds

1 2 34 5 6 7 8 91011>>