/external/chromium_org/base/synchronization/ |
waitable_event_unittest.cc | 74 class WaitableEventSignaler : public PlatformThread::Delegate { 82 PlatformThread::Sleep(TimeDelta::FromSeconds(static_cast<int>(seconds_))); 98 PlatformThread::Create(0, &signaler, &thread); 102 PlatformThread::Join(thread);
|
/external/chromium_org/chrome/service/ |
service_main.cc | 39 base::PlatformThread::SetName("CrServiceMain");
|
/external/chromium_org/chrome_frame/test/perf/ |
run_all.cc | 21 base::PlatformThread::SetName("ChromeFrame perf tests");
|
/external/chromium_org/content/common/ |
one_writer_seqlock.cc | 24 base::PlatformThread::YieldCurrentThread();
|
/external/chromium_org/content/ppapi_plugin/ |
ppapi_broker_main.cc | 24 base::PlatformThread::SetName("CrPPAPIBrokerMain");
|
/external/chromium_org/content/utility/ |
utility_main.cc | 26 base::PlatformThread::SetName("CrUtilityMain");
|
/external/chromium_org/media/audio/ |
cross_process_notification_unittest.cc | 68 class SingleNotifierWorker : public base::PlatformThread::Delegate { 77 // base::PlatformThread::Delegate: 96 class MultiNotifierWorker : public base::PlatformThread::Delegate { 105 // base::PlatformThread::Delegate: 157 class MultiNotifierWorkerFlagArray : public base::PlatformThread::Delegate { 167 // base::PlatformThread::Delegate: 233 base::PlatformThread::Create(0, &worker1, &thread1); 234 base::PlatformThread::Create(0, &worker2, &thread2); 240 base::PlatformThread::Join(thread1); 241 base::PlatformThread::Join(thread2) [all...] |
/external/chromium_org/ppapi/proxy/ |
ppb_var_unittest.cc | 79 // PlatformThread. The test goes roughly like this: 92 class CreateVarThreadDelegate : public base::PlatformThread::Delegate { 122 class ChangeRefVarThreadDelegate : public base::PlatformThread::Delegate { 150 class RemoveRefVarThreadDelegate : public base::PlatformThread::Delegate { 189 base::PlatformThread::Create(0, &create_var_delegates[i], 192 base::PlatformThread::Join(create_var_threads[i]); 202 base::PlatformThread::Create(0, &change_ref_var_delegates[i], 206 base::PlatformThread::Join(change_ref_var_threads[i]); 225 base::PlatformThread::Create(0, &remove_ref_var_delegates[i], 229 base::PlatformThread::Join(remove_ref_var_threads[i]) [all...] |
/external/chromium/net/url_request/ |
url_request_job_manager.h | 87 allowed_thread_ = base::PlatformThread::CurrentId(); 90 return allowed_thread_ == base::PlatformThread::CurrentId();
|
/external/chromium_org/components/nacl/common/ |
nacl_debug_exception_handler_win.cc | 14 class DebugExceptionHandler : public base::PlatformThread::Delegate { 70 // The new PlatformThread will take ownership of the 74 if (!base::PlatformThread::CreateNonJoinable(0, handler)) {
|
/external/chromium_org/net/url_request/ |
url_request_job_manager.h | 85 allowed_thread_ = base::PlatformThread::CurrentId(); 88 return allowed_thread_ == base::PlatformThread::CurrentId();
|
/external/chromium_org/content/renderer/gpu/ |
compositor_output_surface.cc | 65 // TODO(epenner): Implement PlatformThread::CurrentHandle() on windows. 68 main_thread_handle_(base::PlatformThread::CurrentHandle()) 175 base::PlatformThread::SetThreadPriority( 179 base::PlatformThread::SetThreadPriority( 193 base::PlatformThreadId g_last_thread = base::PlatformThread::CurrentId(); 194 DCHECK_EQ(g_last_thread, base::PlatformThread::CurrentId());
|
/external/chromium/base/ |
shared_memory_unittest.cc | 25 class MultipleThreadMain : public PlatformThread::Delegate { 35 // PlatformThread::Delegate interface. 49 PlatformThread::Sleep(1); // Short wait. 75 class MultipleLockThread : public PlatformThread::Delegate { 80 // PlatformThread::Delegate interface. 102 PlatformThread::Sleep(1); // Short wait. 243 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth)); 249 PlatformThread::Join(thread_handles[index]); 272 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth)); 278 PlatformThread::Join(thread_handles[index]) [all...] |
/external/chromium/base/threading/ |
watchdog.cc | 26 init_successful_ = PlatformThread::Create(0, // Default stack size. 41 PlatformThread::Join(handle_); 126 PlatformThread::SetName(name.c_str());
|
thread_collision_warner.cc | 17 const PlatformThreadId current_thread_id = PlatformThread::CurrentId();
|
watchdog.h | 57 class ThreadDelegate : public PlatformThread::Delegate {
|
/external/chromium_org/base/threading/ |
watchdog.cc | 47 enabled_ = PlatformThread::Create(0, // Default stack size. 60 PlatformThread::Join(handle_); 167 PlatformThread::SetName(name.c_str());
|
watchdog_unittest.cc | 103 PlatformThread::Sleep(TimeDelta::FromMilliseconds(500)); 114 PlatformThread::Sleep(TimeDelta::FromMilliseconds(100)); 129 PlatformThread::Sleep(TimeDelta::FromSeconds(1));
|
simple_thread.cc | 32 bool success = PlatformThread::Create(options_.stack_size(), this, &thread_); 41 PlatformThread::Join(thread_); 51 tid_ = PlatformThread::CurrentId(); 55 PlatformThread::SetName(name_.c_str());
|
thread_collision_warner.cc | 17 const PlatformThreadId current_thread_id = PlatformThread::CurrentId();
|
watchdog.h | 64 class ThreadDelegate : public PlatformThread::Delegate {
|
worker_pool_posix.cc | 67 class WorkerThread : public PlatformThread::Delegate { 86 "%s/%d", name_prefix_.c_str(), PlatformThread::CurrentId()); 88 PlatformThread::SetName(name.c_str()); 167 // The new PlatformThread will take ownership of the WorkerThread object, 171 PlatformThread::CreateNonJoinable(kWorkerThreadStackSize, worker);
|
/external/chromium_org/components/nacl/loader/ |
nacl_main.cc | 23 base::PlatformThread::SetName("CrNaClMain");
|
/external/chromium_org/content/plugin/ |
plugin_main.cc | 56 base::PlatformThread::SetName("CrPluginMain");
|
/external/chromium_org/content/renderer/device_orientation/ |
device_orientation_event_pump_unittest.cc | 102 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds( 133 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds( 151 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds( 168 base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(
|