Lines Matching full:channel
44 // 50th message (or on channel error).
66 // There is a race when closing the channel so the last message may be lost.
126 // Set up IPC channel and start client.
138 // Close the channel so the client's OnChannelError() gets fired.
139 channel()->Close();
151 // channel.
165 CloseHandle(pipe); // The channel duplicates the handle.
168 // Connect to channel and start client.
177 // Close the channel so the client's OnChannelError() gets fired.
178 channel()->Close();
193 // Set up IPC channel proxy.
207 // Destroy the channel proxy before shutting down the thread.
233 // Set up IPC channel and start client.
245 // Close the channel so the client's OnChannelError() gets fired.
246 channel()->Close();
256 // Set up IPC channel.
257 IPC::Channel channel(IPCTestBase::GetChannelName("GenericClient"),
258 IPC::Channel::MODE_CLIENT,
260 CHECK(channel.Connect());
261 listener.Init(&channel);
262 Send(&channel, "hello from child");