HomeSort by relevance Sort by last modified time
    Searched refs:ChannelProxy (Results 1 - 19 of 19) sorted by null

  /external/libchrome/ipc/
ipc_security_test_util.h 12 class ChannelProxy;
30 static void PwnMessageReceived(ChannelProxy* channel, const Message& message);
ipc_channel_proxy.cc 31 ChannelProxy::Context::Context(
45 // 1) Create the ChannelProxy on a different thread, or
48 // basically works, but is outside the intent of ChannelProxy. This support
53 ChannelProxy::Context::~Context() = default;
55 void ChannelProxy::Context::ClearIPCTaskRunner() {
59 void ChannelProxy::Context::CreateChannel(
78 bool ChannelProxy::Context::TryFilters(const Message& message) {
101 void ChannelProxy::Context::PauseChannel() {
107 void ChannelProxy::Context::UnpauseChannel(bool flush) {
113 void ChannelProxy::Context::FlushChannel()
    [all...]
ipc_security_test_util.cc 14 void IpcSecurityTestUtil::PwnMessageReceived(ChannelProxy* channel,
18 base::IgnoreResult(&IPC::ChannelProxy::Context::OnMessageReceived),
ipc_channel_proxy.h 41 // IPC::ChannelProxy
46 // your main thread (the thread on which the IPC::ChannelProxy is created).
48 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
49 // When you send a message to an IPC::ChannelProxy, the message is routed to
58 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
60 // the consumer of IPC::ChannelProxy the ability to respond to incoming
65 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
71 // then ChannelProxy skips the inter-thread hop and calls |Send()| directly. In
76 class COMPONENT_EXPORT(IPC) ChannelProxy : public Sender {
89 // the thread that creates the ChannelProxy. The filter's OnMessageReceive
    [all...]
ipc_perftest_util.cc 115 std::unique_ptr<ChannelProxy> channel = IPC::ChannelProxy::Create(
ipc_channel_proxy_unittest.cc 256 channel_proxy_ = IPC::ChannelProxy::Create(
278 IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); }
284 std::unique_ptr<IPC::ChannelProxy> channel_proxy_;
ipc_sync_channel.cc 361 : ChannelProxy::Context(listener, ipc_task_runner, listener_task_runner),
577 : ChannelProxy(new SyncContext(listener,
615 ChannelProxy::SendInternal(message);
630 ChannelProxy::SendInternal(message);
ipc_sync_channel.h 39 // This is similar to ChannelProxy, with the added feature of supporting sending
73 class COMPONENT_EXPORT(IPC) SyncChannel : public ChannelProxy {
99 // Creates an uninitialized sync channel. Call ChannelProxy::Init to
140 // ChannelProxy::Context for more information.
191 // ChannelProxy methods that we override.
246 // ChannelProxy overrides:
ipc_cpu_perftest.cc 219 std::unique_ptr<ChannelProxy> channel_proxy;
231 channel_proxy = IPC::ChannelProxy::Create(
ipc_channel_mojo_unittest.cc 810 IPC::ChannelProxy* proxy() { return proxy_.get(); }
818 std::unique_ptr<IPC::ChannelProxy> proxy_;
838 IPC::ChannelProxy* proxy() { return runner_->proxy(); }
948 IPC::ChannelProxy* proxy() { return runner_->proxy(); }
    [all...]
ipc_mojo_perftest.cc 189 PerformanceChannelListener listener("ChannelProxy");
190 auto channel_proxy = IPC::ChannelProxy::Create(
219 PerformanceChannelListener listener("ChannelProxy");
  /external/webrtc/webrtc/voice_engine/
channel_proxy.cc 21 ChannelProxy::ChannelProxy() : channel_owner_(nullptr) {}
23 ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) :
28 ChannelProxy::~ChannelProxy() {}
30 void ChannelProxy::SetRTCPStatus(bool enable) {
34 void ChannelProxy::SetLocalSSRC(uint32_t ssrc) {
40 void ChannelProxy::SetRTCP_CNAME(const std::string& c_name) {
48 void ChannelProxy::SetSendAbsoluteSenderTimeStatus(bool enable, int id)
    [all...]
channel_proxy.h 39 class ChannelProxy {
41 ChannelProxy();
42 explicit ChannelProxy(const ChannelOwner& channel_owner);
43 virtual ~ChannelProxy();
voice_engine_impl.h 53 class ChannelProxy;
137 virtual rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id);
voice_engine_impl.cc 66 rtc::scoped_ptr<voe::ChannelProxy> VoiceEngineImpl::GetChannelProxy(
71 return rtc::scoped_ptr<voe::ChannelProxy>(
72 new voe::ChannelProxy(channel_manager().GetChannel(channel_id)));
  /external/webrtc/webrtc/audio/
audio_send_stream.h 24 class ChannelProxy;
54 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
audio_receive_stream.h 24 class ChannelProxy;
60 rtc::scoped_ptr<voe::ChannelProxy> channel_proxy_;
  /external/webrtc/webrtc/test/
mock_voe_channel_proxy.h 21 class MockVoEChannelProxy : public voe::ChannelProxy {
mock_voice_engine.h 30 // will create a NiceMock of a voe::ChannelProxy.
42 // Allows injecting a ChannelProxy factory.
43 MOCK_METHOD1(ChannelProxyFactory, voe::ChannelProxy*(int channel_id));
46 rtc::scoped_ptr<voe::ChannelProxy> GetChannelProxy(int channel_id) override {
47 return rtc::scoped_ptr<voe::ChannelProxy>(ChannelProxyFactory(channel_id));

Completed in 309 milliseconds