/external/chromium_org/content/renderer/pepper/ |
renderer_restrict_dispatch_group.h | 15 // IPC::SyncChannel::SetRestrictDispatchChannelGroup. 18 IPC::SyncChannel::kRestrictDispatchGroup_None,
|
/external/chromium_org/ipc/ |
ipc_sync_channel.cc | 32 // To work around this, when SyncChannel filters a sync message, it sets 39 // SyncChannel objects on the same thread (since one object can receive a 42 class SyncChannel::ReceivedSyncMsgQueue : 49 // SyncChannel objects can block the same thread). 60 void QueueMessage(const Message& msg, SyncChannel::SyncContext* context) { 82 void QueueReply(const Message &msg, SyncChannel::SyncContext* context) { 102 scoped_refptr<SyncChannel::SyncContext> context; 130 // SyncChannel calls this in its destructor. 184 // See the comment in SyncChannel::SyncChannel for why this event is create [all...] |
ipc_sync_channel.h | 61 class IPC_EXPORT SyncChannel : public ChannelProxy { 69 SyncChannel(const IPC::ChannelHandle& channel_handle, 79 SyncChannel(Listener* listener, 83 virtual ~SyncChannel(); 114 // SyncContext holds the per object data for SyncChannel, so that SyncChannel 221 DISALLOW_COPY_AND_ASSIGN(SyncChannel);
|
ipc_sync_channel_unittest.cc | 82 // The IPC thread needs to outlive SyncChannel. We can't do this in 129 SyncChannel* channel() { return channel_.get(); } 156 virtual SyncChannel* CreateChannel() { 157 return new SyncChannel(channel_name_, 183 // SyncChannel needs to be destructed on the thread that it was created on. 229 scoped_ptr<SyncChannel> channel_; 329 virtual SyncChannel* CreateChannel() OVERRIDE { 330 SyncChannel* channel = new SyncChannel( 350 virtual SyncChannel* CreateChannel() OVERRIDE [all...] |
/external/chromium_org/chrome/service/ |
service_ipc_server.h | 35 IPC::SyncChannel* channel() { return channel_.get(); } 70 scoped_ptr<IPC::SyncChannel> channel_;
|
service_ipc_server.cc | 28 channel_.reset(new IPC::SyncChannel(
|
/external/chromium_org/components/nacl/loader/ |
nacl_listener.h | 17 class SyncChannel; 48 scoped_ptr<IPC::SyncChannel> channel_;
|
nacl_listener.cc | 216 channel_.reset(new IPC::SyncChannel(
|
/external/chromium_org/content/public/renderer/ |
render_thread.h | 27 class SyncChannel; 50 virtual IPC::SyncChannel* GetChannel() = 0;
|
/external/chromium_org/ppapi/proxy/ |
proxy_channel.h | 79 IPC::SyncChannel* channel() const { 118 scoped_ptr<IPC::SyncChannel> channel_;
|
proxy_channel.cc | 36 channel_.reset(new IPC::SyncChannel(channel_handle, mode, this,
|
/external/chromium_org/content/child/ |
child_thread.h | 28 class SyncChannel; 68 IPC::SyncChannel* channel() { return channel_.get(); } 167 scoped_ptr<IPC::SyncChannel> channel_;
|
child_thread.cc | 126 new IPC::SyncChannel(channel_name_,
|
/external/chromium_org/chrome/test/automation/ |
automation_proxy.h | 174 IPC::SyncChannel* channel(); 226 scoped_ptr<IPC::SyncChannel> channel_;
|
automation_proxy.cc | 160 channel_.reset(new IPC::SyncChannel(this, // we are the listener 331 IPC::SyncChannel* AutomationProxy::channel() {
|
/external/chromium/chrome/browser/service/ |
service_process_control.h | 179 scoped_ptr<IPC::SyncChannel> channel_;
|
service_process_control.cc | 52 new IPC::SyncChannel(channel_id, IPC::Channel::MODE_NAMED_CLIENT, this,
|
/external/chromium_org/content/public/test/ |
mock_render_thread.h | 42 virtual IPC::SyncChannel* GetChannel() OVERRIDE;
|
mock_render_thread.cc | 67 IPC::SyncChannel* MockRenderThread::GetChannel() {
|
/external/chromium_org/content/child/npapi/ |
np_channel_base.h | 160 scoped_ptr<IPC::SyncChannel> channel_;
|
np_channel_base.cc | 166 channel_.reset(new IPC::SyncChannel(
|
/external/chromium_org/content/common/gpu/client/ |
gpu_channel_host.h | 235 scoped_ptr<IPC::SyncChannel> channel_;
|
gpu_channel_host.cc | 63 channel_.reset(new IPC::SyncChannel(channel_handle,
|
/external/chromium_org/content/common/gpu/ |
gpu_channel.h | 203 scoped_ptr<IPC::SyncChannel> channel_;
|
/external/chromium_org/content/renderer/ |
render_thread_impl.h | 126 virtual IPC::SyncChannel* GetChannel() OVERRIDE;
|