OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AutoThread
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/remoting/base/
auto_thread.cc
25
AutoThread
::ComInitType type) {
27
if (type ==
AutoThread
::COM_INIT_MTA) {
30
} else if (type ==
AutoThread
::COM_INIT_STA) {
41
struct
AutoThread
::StartupData {
56
scoped_refptr<AutoThreadTaskRunner>
AutoThread
::CreateWithType(
60
AutoThread
* thread = new
AutoThread
(name, joiner.get());
68
scoped_refptr<AutoThreadTaskRunner>
AutoThread
::Create(
75
scoped_refptr<AutoThreadTaskRunner>
AutoThread
::CreateWithLoopAndComInitTypes(
80
AutoThread
* thread = new AutoThread(name, joiner)
[
all
...]
auto_thread.h
30
class
AutoThread
: base::PlatformThread::Delegate {
32
// Create an
AutoThread
with the specified message-loop |type| and |name|.
44
// Create an
AutoThread
initialized for COM. |com_init_type| specifies the
54
// Construct the
AutoThread
. |name| identifies the thread for debugging.
55
explicit
AutoThread
(const char* name);
58
virtual ~
AutoThread
();
80
AutoThread
(const char* name, AutoThreadTaskRunner* joiner);
110
DISALLOW_COPY_AND_ASSIGN(
AutoThread
);
auto_thread_unittest.cc
99
// Create an
AutoThread
joined by our MessageLoop.
101
AutoThread
::Create(kThreadName, main_task_runner_);
109
// Create an
AutoThread
joined by our MessageLoop.
111
AutoThread
::Create(kThreadName, main_task_runner_);
127
AutoThread
::Create(kThreadName, main_task_runner_);
130
AutoThread
::Create(kThreadName, main_task_runner_);
148
AutoThread
::CreateWithLoopAndComInitTypes(kThreadName,
151
AutoThread
::COM_INIT_MTA);
174
AutoThread
::CreateWithLoopAndComInitTypes(kThreadName,
177
AutoThread
::COM_INIT_STA)
[
all
...]
/external/chromium_org/remoting/host/
chromoting_host_context.cc
22
AutoThread
::CreateWithLoopAndComInitTypes("ChromotingAudioThread",
25
AutoThread
::COM_INIT_STA);
27
audio_task_runner_ =
AutoThread
::CreateWithType(
31
file_task_runner_ =
AutoThread
::CreateWithType(
33
input_task_runner_ =
AutoThread
::CreateWithType(
35
network_task_runner_ =
AutoThread
::CreateWithType(
38
AutoThread
::Create("ChromotingCaptureThread", ui_task_runner_);
39
video_encode_task_runner_ =
AutoThread
::Create(
desktop_process.cc
106
AutoThread
::CreateWithLoopAndComInitTypes("ChromotingAudioThread",
109
AutoThread
::COM_INIT_STA);
111
audio_task_runner =
AutoThread
::CreateWithType(
117
AutoThread
::CreateWithType(
122
AutoThread
::Create("Video capture thread", caller_task_runner_);
desktop_process_main.cc
41
AutoThread
::CreateWithType(
config_file_watcher_unittest.cc
83
AutoThread
::CreateWithType(
desktop_process_unittest.cc
246
io_task_runner_ =
AutoThread
::CreateWithType(
ipc_desktop_environment_unittest.cc
234
io_task_runner_ =
AutoThread
::CreateWithType(
/external/chromium/third_party/libjingle/source/talk/base/
thread.h
211
//
AutoThread
automatically installs itself at construction
215
class
AutoThread
: public Thread {
217
AutoThread
(SocketServer* ss = 0);
218
virtual ~
AutoThread
();
thread.cc
388
AutoThread
thread;
390
ASSERT(current_thread != NULL); //
AutoThread
ensures this
502
AutoThread
::
AutoThread
(SocketServer* ss) : Thread(ss) {
508
AutoThread
::~
AutoThread
() {
/external/chromium_org/third_party/libjingle/source/talk/base/
thread.h
282
//
AutoThread
automatically installs itself at construction
286
class
AutoThread
: public Thread {
288
explicit
AutoThread
(SocketServer* ss = 0);
289
virtual ~
AutoThread
();
292
DISALLOW_COPY_AND_ASSIGN(
AutoThread
);
thread.cc
394
AutoThread
thread;
396
ASSERT(current_thread != NULL); //
AutoThread
ensures this
553
AutoThread
::
AutoThread
(SocketServer* ss) : Thread(ss) {
559
AutoThread
::~
AutoThread
() {
/external/chromium_org/base/threading/
thread_restrictions.h
73
class
AutoThread
;
189
friend class remoting::
AutoThread
;
/external/chromium_org/remoting/host/setup/
daemon_controller.h
22
class
AutoThread
;
257
scoped_ptr<
AutoThread
> delegate_thread_;
daemon_controller.cc
24
delegate_thread_.reset(new
AutoThread
(kDaemonControllerThreadName));
26
delegate_thread_->SetComInitType(
AutoThread
::COM_INIT_STA);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main.cc
92
talk_base::
AutoThread
auto_thread;
/external/chromium_org/remoting/client/jni/
chromoting_jni_runtime.cc
156
network_task_runner_ =
AutoThread
::CreateWithType("native_net",
159
display_task_runner_ =
AutoThread
::Create("native_disp",
/external/chromium_org/remoting/host/win/
host_service.cc
207
AutoThread
::CreateWithType(
/external/chromium_org/remoting/host/plugin/
host_script_object.cc
122
worker_thread_ =
AutoThread
::Create("ChromotingWorkerThread",
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/
libjingleplus.cc
88
main_thread_.reset(new talk_base::
AutoThread
());
Completed in 457 milliseconds