Home
last modified time | relevance | path

Searched refs:ChannelProxy (Results 1 – 19 of 19) sorted by relevance

/external/libchrome/ipc/
Dipc_channel_proxy.cc31 ChannelProxy::Context::Context( in Context()
53 ChannelProxy::Context::~Context() = default;
55 void ChannelProxy::Context::ClearIPCTaskRunner() { in ClearIPCTaskRunner()
59 void ChannelProxy::Context::CreateChannel( in CreateChannel()
78 bool ChannelProxy::Context::TryFilters(const Message& message) { in TryFilters()
101 void ChannelProxy::Context::PauseChannel() { in PauseChannel()
107 void ChannelProxy::Context::UnpauseChannel(bool flush) { in UnpauseChannel()
113 void ChannelProxy::Context::FlushChannel() { in FlushChannel()
119 bool ChannelProxy::Context::OnMessageReceived(const Message& message) { in OnMessageReceived()
127 bool ChannelProxy::Context::OnMessageReceivedNoFilter(const Message& message) { in OnMessageReceivedNoFilter()
[all …]
Dipc_channel_proxy.h76 class COMPONENT_EXPORT(IPC) ChannelProxy : public Sender { in COMPONENT_EXPORT()
95 static std::unique_ptr<ChannelProxy> Create( in COMPONENT_EXPORT()
102 static std::unique_ptr<ChannelProxy> Create( in COMPONENT_EXPORT()
109 ChannelProxy( in COMPONENT_EXPORT()
114 ~ChannelProxy() override; in COMPONENT_EXPORT()
189 base::Bind(&ChannelProxy::BindAssociatedInterfaceRequest<Interface>, in COMPONENT_EXPORT()
244 explicit ChannelProxy(Context* context); in COMPONENT_EXPORT()
306 friend class ChannelProxy; in COMPONENT_EXPORT()
Dipc_security_test_util.h12 class ChannelProxy; variable
30 static void PwnMessageReceived(ChannelProxy* channel, const Message& message);
Dipc_security_test_util.cc14 void IpcSecurityTestUtil::PwnMessageReceived(ChannelProxy* channel, in PwnMessageReceived()
18 base::IgnoreResult(&IPC::ChannelProxy::Context::OnMessageReceived), in PwnMessageReceived()
Dipc_perftest_util.cc115 std::unique_ptr<ChannelProxy> channel = IPC::ChannelProxy::Create( in Run()
Dipc_channel_proxy_unittest.cc256 channel_proxy_ = IPC::ChannelProxy::Create( in SetUp()
278 IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); } in channel_proxy()
284 std::unique_ptr<IPC::ChannelProxy> channel_proxy_;
Dipc_sync_channel.cc361 : ChannelProxy::Context(listener, ipc_task_runner, listener_task_runner), in SyncContext()
577 : ChannelProxy(new SyncContext(listener, in SyncChannel()
615 ChannelProxy::SendInternal(message); in Send()
630 ChannelProxy::SendInternal(message); in Send()
Dipc_cpu_perftest.cc219 std::unique_ptr<ChannelProxy> channel_proxy; in RunPingPongServer()
231 channel_proxy = IPC::ChannelProxy::Create( in RunPingPongServer()
Dipc_sync_channel.h73 class COMPONENT_EXPORT(IPC) SyncChannel : public ChannelProxy { in COMPONENT_EXPORT()
Dipc_channel_mojo_unittest.cc810 IPC::ChannelProxy* proxy() { return proxy_.get(); } in proxy()
818 std::unique_ptr<IPC::ChannelProxy> proxy_;
838 IPC::ChannelProxy* proxy() { return runner_->proxy(); } in proxy()
948 IPC::ChannelProxy* proxy() { return runner_->proxy(); } in proxy()
Dipc_mojo_perftest.cc190 auto channel_proxy = IPC::ChannelProxy::Create( in RunTestChannelProxyPingPong()
/external/webrtc/webrtc/voice_engine/
Dchannel_proxy.cc21 ChannelProxy::ChannelProxy() : channel_owner_(nullptr) {} in ChannelProxy() function in webrtc::voe::ChannelProxy
23 ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) : in ChannelProxy() function in webrtc::voe::ChannelProxy
28 ChannelProxy::~ChannelProxy() {} in ~ChannelProxy()
30 void ChannelProxy::SetRTCPStatus(bool enable) { in SetRTCPStatus()
34 void ChannelProxy::SetLocalSSRC(uint32_t ssrc) { in SetLocalSSRC()
40 void ChannelProxy::SetRTCP_CNAME(const std::string& c_name) { in SetRTCP_CNAME()
48 void ChannelProxy::SetSendAbsoluteSenderTimeStatus(bool enable, int id) { in SetSendAbsoluteSenderTimeStatus()
54 void ChannelProxy::SetSendAudioLevelIndicationStatus(bool enable, int id) { in SetSendAudioLevelIndicationStatus()
60 void ChannelProxy::EnableSendTransportSequenceNumber(int id) { in EnableSendTransportSequenceNumber()
65 void ChannelProxy::SetReceiveAbsoluteSenderTimeStatus(bool enable, int id) { in SetReceiveAbsoluteSenderTimeStatus()
[all …]
Dchannel_proxy.h39 class ChannelProxy {
41 ChannelProxy();
42 explicit ChannelProxy(const ChannelOwner& channel_owner);
43 virtual ~ChannelProxy();
Dvoice_engine_impl.cc66 rtc::scoped_ptr<voe::ChannelProxy> VoiceEngineImpl::GetChannelProxy( in GetChannelProxy()
71 return rtc::scoped_ptr<voe::ChannelProxy>( in GetChannelProxy()
72 new voe::ChannelProxy(channel_manager().GetChannel(channel_id))); in GetChannelProxy()
Dvoice_engine_impl.h53 class ChannelProxy; variable
137 virtual rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
/external/webrtc/webrtc/audio/
Daudio_send_stream.h24 class ChannelProxy; variable
54 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
Daudio_receive_stream.h24 class ChannelProxy; variable
60 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
/external/webrtc/webrtc/test/
Dmock_voe_channel_proxy.h21 class MockVoEChannelProxy : public voe::ChannelProxy {
Dmock_voice_engine.h43 MOCK_METHOD1(ChannelProxyFactory, voe::ChannelProxy*(int channel_id));
46 rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id) override { in GetChannelProxy()
47 return rtc::scoped_ptr<voe::ChannelProxy>(ChannelProxyFactory(channel_id)); in GetChannelProxy()