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

  /external/chromium_org/ipc/
ipc_channel_reader.h 26 class ChannelReader {
28 explicit ChannelReader(Listener* listener);
29 virtual ~ChannelReader();
103 DISALLOW_COPY_AND_ASSIGN(ChannelReader);
ipc_channel_reader.cc 14 ChannelReader::ChannelReader(Listener* listener) : listener_(listener) {
18 ChannelReader::~ChannelReader() {
21 bool ChannelReader::ProcessIncomingMessages() {
37 bool ChannelReader::AsyncReadComplete(int bytes_read) {
41 bool ChannelReader::IsInternalMessage(const Message& m) const {
47 bool ChannelReader::IsHelloMessage(const Message& m) const {
52 bool ChannelReader::DispatchInputData(const char* input_data,
86 TRACE_EVENT1("ipc,toplevel", "ChannelReader::DispatchInputData"
    [all...]
ipc_channel_nacl.h 35 public internal::ChannelReader {
60 // ChannelReader implementation.
90 // IPC::ChannelReader expects to be able to call ReadData on us to
ipc_channel_win.h 25 public internal::ChannelReader,
43 // ChannelReader implementation.
ipc_channel_posix.h 53 public internal::ChannelReader,
102 // ChannelReader implementation.
ipc_channel_nacl.cc 124 : ChannelReader(listener),
ipc_channel_win.cc 38 : ChannelReader(listener),
ipc_channel_posix.cc 182 : ChannelReader(listener),
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java 182 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READ);
186 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READV);
189 private void testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method method)
199 if (method == ChannelReader.Method.READ) {
214 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READ);
218 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READV);
221 private void testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method method)
232 if (method == ChannelReader.Method.READ) {
251 testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method.READ);
255 testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method.READV)
    [all...]

Completed in 153 milliseconds