Searched refs:Read (Results 201 - 225 of 1395) sorted by relevance

1234567891011>>

/external/chromium_org/jingle/glue/
H A Dchannel_socket_adapter_unittest.cc84 // Verify that Read() returns net::ERR_IO_PENDING.
85 TEST_F(TransportChannelSocketAdapterTest, Read) {
88 int result = target_->Read(buffer.get(), kBufferSize, callback_);
96 // Verify that Read() after Close() returns error.
100 int result = target_->Read(buffer.get(), kBufferSize, callback_);
106 // All Read() calls after Close() should return the error.
107 EXPECT_EQ(kTestError, target_->Read(buffer.get(), kBufferSize, callback_));
/external/chromium_org/media/base/
H A Dfake_text_track_stream.h21 virtual void Read(const ReadCB&) OVERRIDE;
/external/chromium_org/media/filters/
H A Daudio_file_reader.h45 int Read(AudioBus* audio_bus);
54 // read. The Read() method returns the actual number of sample-frames it has
H A Dblocking_url_protocol.h18 // asynchronous DataSource::Read() operation completes.
22 // fired any time DataSource::Read() returns an error.
30 // returns all subsequent calls to Read() will immediately fail.
34 virtual int Read(int size, uint8* data) OVERRIDE;
H A Dfile_data_source.h29 virtual void Read(int64 position, int size, uint8* data,
H A Din_memory_url_protocol.cc21 int InMemoryUrlProtocol::Read(int size, uint8* data) { function in class:media::InMemoryUrlProtocol
/external/chromium_org/media/mojo/services/
H A Dmojo_demuxer_stream_impl.h27 virtual void Read(const mojo::Callback<
35 // |callback| is the callback that was passed to the initiating Read()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Djspipe_node.h55 virtual Error Read(const HandleAttr& attr,
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
H A Dreal_node.h23 virtual Error Read(const HandleAttr& attr,
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfifo_test.cc52 // Read 1/2 of it
53 rd_offs += fifo.Read(temp_rd + rd_offs, kHalfSize);
65 rd_offs += fifo.Read(temp_rd + rd_offs, kTestSize);
97 rd_offs += fifo.Read(temp_rd, kQuarterSize);
108 rd_offs += fifo.Read(&temp_rd[rd_offs], kTestSize);
/external/chromium_org/net/disk_cache/blockfile/
H A Dmapped_file_posix.cc35 if (!Read(temp.get(), temp_len, 0))
H A Dmapped_file_win.cc33 if (!Read(temp.get(), temp_len, 0))
/external/chromium_org/net/server/
H A Dweb_socket.h42 virtual ParseResult Read(std::string* message) = 0;
/external/chromium_org/net/udp/
H A Dudp_client_socket.h28 virtual int Read(IOBuffer* buf, int buf_len,
/external/chromium_org/ppapi/cpp/private/
H A Dtcp_socket_private.h42 int32_t Read(char* buffer,
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_thunk.cc70 int32_t Read(PP_Resource file_io, function in namespace:ppapi::thunk::__anon10259
75 VLOG(4) << "PPB_FileIO::Read()";
79 return enter.SetResult(enter.object()->Read(offset,
147 &Read,
160 &Read,
H A Dppb_tcp_socket_thunk.cc80 int32_t Read(PP_Resource tcp_socket, function in namespace:ppapi::thunk::__anon10307
84 VLOG(4) << "PPB_TCPSocket::Read()";
88 return enter.SetResult(enter.object()->Read(buffer,
154 &Read,
167 &Read,
/external/chromium_org/storage/browser/blob/
H A Dfile_stream_reader.h75 // returned, and the callback will be run on the thread where Read()
78 // It is invalid to call Read while there is an in-flight Read operation.
80 // If the stream is deleted while it has an in-flight Read operation
82 virtual int Read(net::IOBuffer* buf, int buf_len,
/external/chromium_org/sync/api/attachments/
H A Dattachment_store.h32 // TODO(maniscalco): Consider udpating Read and Write methods to support
58 virtual void Read(const AttachmentIdList& ids,
H A Dfake_attachment_store.cc25 void Read(const AttachmentIdList& ids, const ReadCallback& callback);
44 void FakeAttachmentStore::Backend::Read(const AttachmentIdList& ids, function in class:syncer::FakeAttachmentStore::Backend
104 void FakeAttachmentStore::Read(const AttachmentIdList& ids, function in class:syncer::FakeAttachmentStore
108 base::Bind(&FakeAttachmentStore::Backend::Read, backend_, ids, callback));
H A Dfake_attachment_store.h40 virtual void Read(const AttachmentIdList& id,
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_system.h53 int Read(void* buffer, size_t buffer_size);
H A Dcrazy_linker_system_unittest.cpp25 EXPECT_EQ(kStringLen, fd.Read(buff2, sizeof(buff2)));
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dasyncsocket.h70 virtual bool Read(char * data, size_t len, size_t* len_read) = 0;
/external/chromium_org/third_party/lzma_sdk/
H A DTypes.h129 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */ member in struct:__anon13443
139 SRes (*Read)(void *p, void *buf, size_t *size); member in struct:__anon13445
165 SRes (*Read)(void *p, void *buf, size_t *size); /* same as ISeqInStream::Read */ member in struct:__anon13448
178 SRes (*Read)(void *p, void *buf, size_t *size); member in struct:__anon13449
179 /* reads directly (without buffer). It's same as ISeqInStream::Read */
186 /* reads via ILookInStream::Read */

Completed in 982 milliseconds

1234567891011>>