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

1 2 34 5 6 7 8

  /external/stressapptest/src/
logger.cc 51 LOGGER_ASSERT(0 == pthread_create(&thread_, NULL, &StartRoutine, this));
64 LOGGER_ASSERT(0 == pthread_join(thread_, NULL));
  /external/chromium/chrome/browser/chromeos/
audio_mixer_alsa.h 105 scoped_ptr<base::Thread> thread_; member in class:chromeos::AudioMixerAlsa
  /external/chromium/chrome/browser/chromeos/login/
camera.h 149 base::Thread* thread_; member in class:chromeos::Camera
  /external/chromium/chrome/browser/password_manager/
password_store_mac.h 30 // Initializes |thread_| and |notification_service_|.
36 // Schedules tasks on |thread_|.
86 scoped_ptr<base::Thread> thread_; member in class:PasswordStoreMac
  /external/chromium/net/base/
directory_lister.h 109 base::PlatformThreadHandle thread_; member in class:net::DirectoryLister
listen_socket_unittest.h 100 scoped_ptr<base::Thread> thread_; member in class:ListenSocketTester
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunrequest.h 70 talk_base::Thread* thread_; member in class:cricket::StunRequestManager
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac.h 35 // Initializes |thread_| and |notification_service_|.
95 scoped_ptr<base::Thread> thread_; member in class:PasswordStoreMac
  /external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker.h 50 content::BrowserThread::ID thread_; member in class:browser_sync::BrowserThreadModelWorker
  /external/chromium_org/chrome/test/chromedriver/net/
test_http_server.h 77 base::Thread thread_; member in class:TestHttpServer
  /external/chromium_org/content/renderer/media/
video_capture_impl_manager.h 74 base::Thread thread_; member in class:content::VideoCaptureImplManager
  /external/chromium_org/net/socket/
tcp_listen_socket_unittest.cc 32 thread_.reset(new base::Thread("socketio_test"));
33 thread_->StartWithOptions(options);
34 loop_ = reinterpret_cast<base::MessageLoopForIO*>(thread_->message_loop());
82 thread_.reset();
tcp_listen_socket_unittest.h 99 scoped_ptr<base::Thread> thread_; member in class:net::TCPListenSocketTester
  /external/chromium_org/remoting/base/
auto_thread.h 98 base::PlatformThreadHandle thread_; member in class:remoting::AutoThread
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stunrequest.h 72 talk_base::Thread* thread_; member in class:cricket::StunRequestManager
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver.cc 85 // Note that declaration ordering is important here. |thread_| needs to be
87 // executing on |thread_|.
88 scoped_ptr<base::Thread> thread_; member in class:net::MultiThreadedProxyResolver::Executor
309 thread_.reset(new base::Thread(thread_name.c_str()));
310 CHECK(thread_->Start());
321 thread_->message_loop()->PostTask(
345 thread_.reset();
366 thread_->message_loop()->PostTask(
375 DCHECK(!thread_.get());
  /external/chromium_org/net/proxy/
multi_threaded_proxy_resolver.cc 74 // Note that declaration ordering is important here. |thread_| needs to be
76 // executing on |thread_|.
77 scoped_ptr<base::Thread> thread_; member in class:net::MultiThreadedProxyResolver::Executor
323 thread_.reset(new base::Thread(thread_name.c_str()));
324 CHECK(thread_->Start());
335 thread_->message_loop()->PostTask(
354 thread_.reset();
374 thread_->message_loop()->PostTask(
384 DCHECK(!thread_.get());
  /external/chromium/base/files/
file_path_watcher_linux.cc 72 base::Thread thread_; member in class:base::files::__anon4078::InotifyReader
221 : thread_("inotify_reader"),
226 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) {
227 thread_.message_loop()->PostTask(
240 thread_.Stop();
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket_unittest.cc 75 thread_(NULL),
97 thread_.reset(new base::Thread("socketio_test"));
98 thread_->StartWithOptions(options);
99 loop_ = static_cast<MessageLoopForIO*>(thread_->message_loop());
154 thread_.reset();
devtools_remote_listen_socket_unittest.h 113 scoped_ptr<base::Thread> thread_; member in class:DevToolsRemoteListenSocketTester
  /external/chromium_org/tools/android/forwarder/
forwarder.cc 114 : thread_(kInvalidThread),
162 pthread_create(&thread_, NULL, ServerThread, this);
166 if (thread_ != kInvalidThread)
167 pthread_join(thread_, NULL);
182 pthread_t thread_; member in class:__anon16454::Server
  /external/chromium_org/chrome_frame/
urlmon_url_request.cc 38 thread_(NULL),
57 DCHECK(thread_ == 0 || thread_ == base::PlatformThread::CurrentId());
58 thread_ = base::PlatformThread::CurrentId();
78 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
106 DCHECK_EQ(thread_, base::PlatformThread::CurrentId());
150 DCHECK(thread_ == 0 || thread_ == base::PlatformThread::CurrentId());
151 thread_ = base::PlatformThread::CurrentId();
170 DCHECK_EQ(thread_, base::PlatformThread::CurrentId())
    [all...]
  /external/chromium_org/media/filters/
video_renderer_base.cc 37 thread_(),
50 CHECK(thread_.is_null());
103 if (!thread_.is_null()) {
107 std::swap(thread_, thread_to_join);
204 if (!base::PlatformThread::Create(0, this, &thread_)) {
214 ::SetThreadPriority(thread_.platform_handle(), THREAD_PRIORITY_ABOVE_NORMAL);
433 // Avoid needlessly waking up |thread_| unless playing.
  /external/chromium_org/gpu/command_buffer/service/
in_process_command_buffer.cc 152 scoped_refptr<GpuInProcessThread> thread_; member in class:gpu::__anon10687::SchedulerClientBase
169 thread_ = other->thread_;
170 DCHECK(thread_.get());
172 thread_ = new GpuInProcessThread;
196 DCHECK(thread_.get());
200 thread_->message_loop()->PostTask(FROM_HERE, task);
211 DCHECK(!thread_.get());
  /external/chromium/base/threading/
simple_thread.h 111 PlatformThreadHandle thread_; // PlatformThread handle, invalid after Join! member in class:base::SimpleThread

Completed in 2106 milliseconds

1 2 34 5 6 7 8