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

  /external/chromium_org/content/browser/device_orientation/
device_motion_provider.cc 90 if (polling_thread_)
91 polling_thread_->Stop();
119 if (!polling_thread_)
122 polling_thread_->message_loop()->PostTask(
125 base::Unretained(polling_thread_.get()),
137 polling_thread_.reset(
140 if (!polling_thread_->Start()) {
153 DCHECK(polling_thread_);
154 polling_thread_->message_loop()->PostTask(
157 base::Unretained(polling_thread_.get())))
    [all...]
provider_impl.cc 173 polling_thread_(NULL) {
183 base::MessageLoop* polling_loop = polling_thread_->message_loop();
186 base::Unretained(polling_thread_),
218 DCHECK(!polling_thread_);
220 polling_thread_ = new PollingThread("Device data polling thread",
224 polling_thread_->init_com_with_mta(true);
226 if (!polling_thread_->Start()) {
228 delete polling_thread_;
229 polling_thread_ = NULL;
239 if (polling_thread_) {
    [all...]
device_motion_provider.h 48 scoped_ptr<PollingThread> polling_thread_; member in class:content::DeviceMotionProvider
provider_impl.h 68 // When polling_thread_ is running, members below are only to be used
76 PollingThread* polling_thread_; member in class:content::ProviderImpl
  /external/chromium_org/content/browser/gamepad/
gamepad_provider.cc 54 // which dereference |polling_thread_|.
55 polling_thread_->Stop();
71 base::MessageLoop* polling_loop = polling_thread_->message_loop();
85 base::MessageLoop* polling_loop = polling_thread_->message_loop();
115 polling_thread_.reset(new base::Thread("Gamepad polling thread"));
126 polling_thread_->StartWithOptions(base::Thread::Options(kMessageLoopType, 0));
128 polling_thread_->message_loop()->PostTask(
137 DCHECK(base::MessageLoop::current() == polling_thread_->message_loop());
146 DCHECK(base::MessageLoop::current() == polling_thread_->message_loop());
152 DCHECK(base::MessageLoop::current() == polling_thread_->message_loop())
    [all...]
gamepad_provider.h 66 // polling_thread_.
69 // Method for polling a GamepadDataFetcher. Runs on the polling_thread_.
115 // When polling_thread_ is running, members below are only to be used
121 scoped_ptr<base::Thread> polling_thread_; member in class:content::GamepadProvider

Completed in 104 milliseconds