Home
last modified time | relevance | path

Searched refs:io_task_runner (Results 1 – 9 of 9) sorted by relevance

/external/libmojo/mojo/edk/system/
Dchannel_win.cc78 scoped_refptr<base::TaskRunner> io_task_runner) in ChannelWin() argument
82 io_task_runner_(io_task_runner) { in ChannelWin()
354 scoped_refptr<base::TaskRunner> io_task_runner) { in Create() argument
356 io_task_runner); in Create()
Dchannel_posix.cc92 scoped_refptr<base::TaskRunner> io_task_runner) in ChannelPosix() argument
96 io_task_runner_(io_task_runner) in ChannelPosix()
566 scoped_refptr<base::TaskRunner> io_task_runner) { in Create() argument
568 io_task_runner); in Create()
Dnode_channel.h95 scoped_refptr<base::TaskRunner> io_task_runner,
172 scoped_refptr<base::TaskRunner> io_task_runner,
Dcore.cc141 if (node_controller_ && node_controller_->io_task_runner()) { in ~Core()
145 scoped_refptr<base::TaskRunner> io_task_runner = in ~Core() local
146 node_controller_->io_task_runner(); in ~Core()
147 io_task_runner->PostTask(FROM_HERE, in ~Core()
153 void Core::SetIOTaskRunner(scoped_refptr<base::TaskRunner> io_task_runner) { in SetIOTaskRunner() argument
154 GetNodeController()->SetIOTaskRunner(io_task_runner); in SetIOTaskRunner()
Dnode_controller.h61 scoped_refptr<base::TaskRunner> io_task_runner() const { in io_task_runner() function
72 void SetIOTaskRunner(scoped_refptr<base::TaskRunner> io_task_runner);
Dnode_channel.cc164 scoped_refptr<base::TaskRunner> io_task_runner, in Create() argument
170 return new NodeChannel(delegate, std::move(connection_params), io_task_runner, in Create()
458 scoped_refptr<base::TaskRunner> io_task_runner, in NodeChannel() argument
461 io_task_runner_(io_task_runner), in NodeChannel()
Dchannel.h218 scoped_refptr<base::TaskRunner> io_task_runner);
Dcore.h48 void SetIOTaskRunner(scoped_refptr<base::TaskRunner> io_task_runner);
/external/libmojo/mojo/edk/embedder/
Dembedder.cc122 return internal::g_core->GetNodeController()->io_task_runner(); in GetIOTaskRunner()