Searched defs:thread_ (Results 76 - 100 of 103) sorted by last modified time

12345

/external/chromium_org/media/filters/
H A Dvideo_renderer_impl.h137 // Used to signal |thread_| as frames are added to |frames_|. Rule of thumb:
168 base::PlatformThreadHandle thread_; member in class:media::VideoRendererImpl
/external/chromium_org/mojo/application_manager/
H A Dbackground_shell_application_loader.h56 // Created on |thread_| during construction of |this|. Protected against
59 // that holding a reference won't hold |thread_| from exiting.
63 // Lives on |thread_|.
66 scoped_ptr<base::DelegateSimpleThread> thread_; member in class:mojo::BackgroundShellApplicationLoader
68 // Lives on |thread_|. Trivial interface that calls through to |loader_|.
/external/chromium_org/mojo/apps/js/
H A Djs_app.h51 base::Thread thread_; member in class:mojo::apps::JSApp
/external/chromium_org/mojo/common/
H A Dhandle_watcher.cc204 base::Thread thread_; member in class:mojo::common::WatcherThreadManager
221 thread_.Stop();
249 // |thread_| woke up.
281 // We own |thread_|, so it's safe to use Unretained() here.
282 thread_.message_loop()->PostTask(
289 DCHECK_EQ(thread_.message_loop(), base::MessageLoop::current());
307 : thread_(kWatcherThreadName) {
310 thread_.StartWithOptions(thread_options);
/external/chromium_org/mojo/public/cpp/utility/
H A Dthread.h53 pthread_t thread_; member in class:mojo::Thread
/external/chromium_org/mojo/services/html_viewer/
H A Dwebthread_impl.h47 base::MessageLoop* message_loop() const { return thread_->message_loop(); }
53 scoped_ptr<base::Thread> thread_; member in class:mojo::WebThreadImpl
/external/chromium_org/mojo/shell/
H A Din_process_dynamic_service_runner.h41 scoped_ptr<base::DelegateSimpleThread> thread_; member in class:mojo::shell::InProcessDynamicServiceRunner
/external/chromium_org/content/renderer/media/
H A Dwebrtc_local_audio_track_unittest.cc42 thread_(),
48 virtual ~FakeAudioThread() { DCHECK(thread_.is_null()); }
69 0, this, &thread_, base::kThreadPriority_RealtimeAudio);
70 CHECK(!thread_.is_null());
75 base::PlatformThread::Join(thread_);
76 thread_ = base::PlatformThreadHandle();
82 base::PlatformThreadHandle thread_; member in class:content::__anon7773::FakeAudioThread
/external/chromium_org/content/browser/devtools/
H A Ddevtools_http_handler_impl.h119 scoped_ptr<base::Thread> thread_; member in class:content::DevToolsHttpHandlerImpl
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc142 ScopedThreadStopper(base::Thread* thread) : thread_(thread) {
146 if (thread_) {
149 thread_->message_loop_proxy()->PostTaskAndReply(
152 thread_->Stop();
156 bool is_valid() const { return thread_; }
159 base::Thread* thread_; member in class:content::__anon7100::ScopedThreadStopper
/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device.h55 base::Thread thread_; member in class:content::DesktopCaptureDevice
/external/chromium_org/content/browser/tracing/
H A Detw_system_event_consumer_win.h66 base::Thread thread_; member in class:content::EtwSystemEventConsumer
/external/chromium_org/content/child/
H A Dwebthread_impl.h48 base::MessageLoop* message_loop() const { return thread_->message_loop(); }
54 scoped_ptr<base::Thread> thread_; member in class:content::WebThreadImpl
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
H A DIRCProxyWebSocket.java42 Thread thread_; field in class:IRCProxyWebSocket.ChatWebSocket
66 thread_ = new Thread(this);
67 thread_.start();
90 thread_.stop();
/external/chromium_org/chrome/common/
H A Dprofiling.cc91 ProfilingThreadControl() : thread_(NULL) {}
96 if (thread_ && thread_->IsRunning())
98 thread_ = new base::Thread("Profiling_Flush");
99 thread_->Start();
100 thread_->message_loop()->PostTask(
101 FROM_HERE, base::Bind(&FlushProfilingData, thread_));
107 if (!thread_ || !thread_->IsRunning())
109 thread_
115 base::Thread* thread_; member in class:__anon5695::ProfilingThreadControl
[all...]
/external/chromium_org/chrome/test/chromedriver/net/
H A Dport_server_unittest.cc119 PortServerTest() : thread_("server") {
120 EXPECT_TRUE(thread_.Start());
127 thread_.message_loop()->PostTask(
135 base::Thread thread_; member in class:PortServerTest
H A Dtest_http_server.h78 base::Thread thread_; member in class:TestHttpServer
/external/chromium_org/cloud_print/service/win/
H A Dchrome_launcher.h34 scoped_ptr<base::DelegateSimpleThread> thread_; member in class:ChromeLauncher
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac.h39 // Initializes |thread_|.
44 // Stops |thread_|.
105 scoped_ptr<base::Thread> thread_; member in class:PasswordStoreMac
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_worker.h146 base::Thread thread_; member in class:printing::PrintJobWorker
148 // Tread-safe pointer to task runner of the |thread_|.
/external/chromium_org/chrome/browser/sync/glue/
H A Dbrowser_thread_model_worker.h50 content::BrowserThread::ID thread_; member in class:browser_sync::BrowserThreadModelWorker
/external/chromium_org/chrome/browser/devtools/device/
H A Dandroid_device_manager.h188 base::Thread* thread_; member in class:AndroidDeviceManager::HandlerThread
/external/chromium_org/chrome/browser/history/
H A Dhistory_service.h759 DCHECK(thread_) << "History service being called after cleanup";
768 DCHECK(thread_) << "History service being called after cleanup";
778 DCHECK(thread_) << "History service being called after cleanup";
789 DCHECK(thread_) << "History service being called after cleanup";
805 DCHECK(thread_) << "History service being called after cleanup";
824 DCHECK(thread_) << "History service being called after cleanup";
835 // |thread_| is NULL once |Cleanup| is NULL.
836 base::Thread* thread_; member in class:HistoryService
838 // This class has most of the implementation and runs on the 'thread_'.
839 // You MUST communicate with this class ONLY through the thread_'
[all...]
/external/chromium_org/base/android/
H A Dapplication_status_listener_unittest.cc45 thread_("ApplicationStatusTest thread"),
51 thread_.Start();
52 thread_.message_loop()
75 EXPECT_EQ(thread_.message_loop(), base::MessageLoop::current());
94 base::Thread thread_; member in class:base::android::__anon2176::MultiThreadedTest
/external/chromium_org/base/files/
H A Dfile_path_watcher_linux.cc75 Thread thread_; member in class:base::__anon2252::InotifyReader
255 : thread_("inotify_reader"),
263 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) {
264 thread_.message_loop()->PostTask(
278 thread_.Stop();

Completed in 1793 milliseconds

12345