OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ChannelProxy
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ipc/
ipc_channel_proxy.h
28
// IPC::
ChannelProxy
33
// your main thread (the thread on which the IPC::
ChannelProxy
is created).
35
// The API for an IPC::
ChannelProxy
is very similar to that of an IPC::Channel.
36
// When you send a message to an IPC::
ChannelProxy
, the message is routed to
45
// An IPC::
ChannelProxy
can have a MessageFilter associated with it, which will
47
// the consumer of IPC::
ChannelProxy
the ability to respond to incoming
52
// The consumer of IPC::
ChannelProxy
is responsible for allocating the Thread
55
class IPC_EXPORT
ChannelProxy
: public Sender, public base::NonThreadSafe {
71
// the
ChannelProxy
and when the Channel is closing. After a filter is
100
// the thread that creates the
ChannelProxy
. The filter's OnMessageReceive
[
all
...]
ipc_channel_proxy.cc
23
ChannelProxy
::MessageFilter::MessageFilter() {}
25
void
ChannelProxy
::MessageFilter::OnFilterAdded(Channel* channel) {}
27
void
ChannelProxy
::MessageFilter::OnFilterRemoved() {}
29
void
ChannelProxy
::MessageFilter::OnChannelConnected(int32 peer_pid) {}
31
void
ChannelProxy
::MessageFilter::OnChannelError() {}
33
void
ChannelProxy
::MessageFilter::OnChannelClosing() {}
35
bool
ChannelProxy
::MessageFilter::OnMessageReceived(const Message& message) {
39
ChannelProxy
::MessageFilter::~MessageFilter() {}
43
ChannelProxy
::Context::Context(Listener* listener,
53
ChannelProxy
::Context::~Context()
[
all
...]
Completed in 33 milliseconds