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

  /external/chromium_org/extensions/browser/api/cast_channel/
cast_framer_unittest.cc 53 EXPECT_EQ(NULL, framer_->Ingest(1, &message_length, &error).get());
57 // Ingest remaining 3, expect that the framer has moved on to requesting the
59 EXPECT_EQ(NULL, framer_->Ingest(3, &message_length, &error).get());
67 message = framer_->Ingest(framer_->BytesRequested(), &message_length, &error);
96 EXPECT_EQ(NULL, framer_->Ingest(4, &bytes_ingested, &error).get());
103 EXPECT_EQ(NULL, framer_->Ingest(4, &bytes_ingested, &error).get());
125 EXPECT_EQ(NULL, framer_->Ingest(4, &message_length, &error).get());
132 framer_->Ingest(framer_->BytesRequested(), &message_length, &error)
cast_framer.h 42 // |error| The result of the ingest operation. Set to CHANNEL_ERROR_NONE
46 scoped_ptr<CastMessage> Ingest(size_t num_bytes,
76 // The element of the message that will be read on the next call to Ingest().
89 // Disables Ingest functionality is the parser receives invalid data.
cast_framer.cc 113 scoped_ptr<CastMessage> MessageFramer::Ingest(size_t num_bytes,
cast_transport.cc 398 current_message_ = framer_->Ingest(result, &message_size, &error_state_);
cast_socket.cc 743 current_message_ = framer_->Ingest(result, &message_size, &error_state_);

Completed in 4408 milliseconds