/external/libchrome/ipc/ |
D | ipc_channel_proxy.cc | 31 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 …]
|
D | ipc_channel_proxy.h | 76 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()
|
D | ipc_security_test_util.h | 12 class ChannelProxy; variable 30 static void PwnMessageReceived(ChannelProxy* channel, const Message& message);
|
D | ipc_security_test_util.cc | 14 void IpcSecurityTestUtil::PwnMessageReceived(ChannelProxy* channel, in PwnMessageReceived() 18 base::IgnoreResult(&IPC::ChannelProxy::Context::OnMessageReceived), in PwnMessageReceived()
|
D | ipc_perftest_util.cc | 115 std::unique_ptr<ChannelProxy> channel = IPC::ChannelProxy::Create( in Run()
|
D | ipc_channel_proxy_unittest.cc | 256 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_;
|
D | ipc_sync_channel.cc | 361 : 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()
|
D | ipc_cpu_perftest.cc | 219 std::unique_ptr<ChannelProxy> channel_proxy; in RunPingPongServer() 231 channel_proxy = IPC::ChannelProxy::Create( in RunPingPongServer()
|
D | ipc_sync_channel.h | 73 class COMPONENT_EXPORT(IPC) SyncChannel : public ChannelProxy { in COMPONENT_EXPORT()
|
D | ipc_channel_mojo_unittest.cc | 810 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()
|
D | ipc_mojo_perftest.cc | 190 auto channel_proxy = IPC::ChannelProxy::Create( in RunTestChannelProxyPingPong()
|
/external/webrtc/webrtc/voice_engine/ |
D | channel_proxy.cc | 21 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 …]
|
D | channel_proxy.h | 39 class ChannelProxy { 41 ChannelProxy(); 42 explicit ChannelProxy(const ChannelOwner& channel_owner); 43 virtual ~ChannelProxy();
|
D | voice_engine_impl.cc | 66 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()
|
D | voice_engine_impl.h | 53 class ChannelProxy; variable 137 virtual rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
|
/external/webrtc/webrtc/audio/ |
D | audio_send_stream.h | 24 class ChannelProxy; variable 54 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
|
D | audio_receive_stream.h | 24 class ChannelProxy; variable 60 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
|
/external/webrtc/webrtc/test/ |
D | mock_voe_channel_proxy.h | 21 class MockVoEChannelProxy : public voe::ChannelProxy {
|
D | mock_voice_engine.h | 43 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()
|