Searched refs:Write (Results 201 - 225 of 1244) sorted by relevance

1234567891011>>

/external/chromium_org/crypto/
H A Dencryptor.cc38 void Encryptor::Counter::Write(void* buf) { function in class:crypto::Encryptor::Counter
74 counter_->Write(mask);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Ddev_fs.cc45 virtual Error Write(const HandleAttr& attr,
55 virtual Error Write(const HandleAttr& attr,
72 virtual Error Write(const HandleAttr& attr,
86 virtual Error Write(const HandleAttr& attr,
119 Error NullNode::Write(const HandleAttr& attr, function in class:nacl_io::__anon8913::NullNode
131 Error ConsoleNode::Write(const HandleAttr& attr, function in class:nacl_io::__anon8913::ConsoleNode
170 Error ZeroNode::Write(const HandleAttr& attr, function in class:nacl_io::__anon8913::ZeroNode
225 Error UrandomNode::Write(const HandleAttr& attr, function in class:nacl_io::__anon8913::UrandomNode
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
H A Dtcp_event_emitter.cc51 uint32_t count = in_fifo_.Write(data, len);
65 uint32_t count = out_fifo_.Write(data, len);
/external/chromium_org/net/base/
H A Dfile_stream.cc68 int FileStream::Write(IOBuffer* buf, function in class:net::FileStream
75 return context_->Write(buf, buf_len, callback);
/external/chromium_org/ppapi/c/
H A Dppb_tcp_socket.h201 int32_t (*Write)(PP_Resource tcp_socket, member in struct:PPB_TCPSocket_1_1
290 int32_t (*Write)(PP_Resource tcp_socket, member in struct:PPB_TCPSocket_1_0
/external/lldb/scripts/Python/interface/
H A DSBCommunication.i64 Write (const void *src,
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs140 public override void Write(byte[] buffer, int offset, int count) method in class:SevenZip.LzmaBench.CrcOutStream
214 System.Console.Write(" ");
215 System.Console.Write(s);
221 System.Console.Write(" MIPS");
232 System.Console.Write(" KB/s ");
250 System.Console.Write("\n Compressing Decompressing\n\n");
322 System.Console.Write(" ");
333 System.Console.Write(" ");
/external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
H A Dfile_stream_writer_unittest.cc119 TEST_F(FileSystemProviderFileStreamWriter, Write) {
127 const int result = writer.Write(io_buffer.get(),
145 // Write additional data to be sure, that the writer's offset is shifted
148 const int result = writer.Write(io_buffer.get(),
177 const int write_result = writer.Write(io_buffer.get(),
199 const int result = writer.Write(io_buffer.get(),
223 const int result = writer.Write(io_buffer.get(),
/external/chromium_org/chrome/browser/extensions/api/socket/
H A Dtcp_socket_unittest.cc32 MOCK_METHOD3(Write, int(net::IOBuffer* buf, int buf_len,
97 EXPECT_CALL(*tcp_client_socket, Write(_, _, _))
106 socket->Write(io_buffer.get(), io_buffer->size(),
119 EXPECT_CALL(*tcp_client_socket, Write(_, _, _))
124 socket->Write(io_buffer.get(), io_buffer->size(),
144 EXPECT_CALL(*tcp_client_socket, Write(_, _, _))
154 socket->Write(io_buffers[i].get(), io_buffers[i]->size(),
/external/chromium_org/content/browser/streams/
H A Dstream_unittest.cc99 void Write(Stream* stream, function in class:content::TestStreamWriter
160 writer.Write(stream.get(), buffer, kBufferSize);
273 writer1.Write(stream1.get(), buffer, kBufferSize);
277 writer2.Write(stream2.get(), buffer, kBufferSize);
283 writer1.Write(stream1.get(), buffer, kMaxMemoryUsage - kBufferSize);
301 writer.Write(stream.get(), buffer, kBufferSize);
306 writer.Write(stream.get(), buffer, kBufferSize);
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_usage_cache.cc40 // Pickle::{Read,Write}Bool treat bool as int
85 bool success = Write(usage_file_path, is_valid, dirty + 1, usage);
104 return Write(usage_file_path, is_valid, dirty - 1, usage);
116 return Write(usage_file_path, false, dirty, usage);
139 return Write(usage_file_path, is_valid, dirty, usage + delta);
146 return Write(usage_file_path, true, 0, fs_usage);
205 bool FileSystemUsageCache::Write(const base::FilePath& usage_file_path, function in class:storage::FileSystemUsageCache
209 TRACE_EVENT0("FileSystem", "UsageCache::Write");
269 return file->Write(0, buffer, buffer_size) == buffer_size;
/external/openfst/src/include/fst/
H A Dadd-on.h51 bool Write(ostream &ostrm) const { return true; } function in class:fst::NullAddOn
108 bool Write(ostream &ostrm) const { function in class:fst::AddOnPair
112 a1_->Write(ostrm);
116 a2_->Write(ostrm);
140 // a 'bool Write(ostream &)' method, and 'int RecCount(), 'int IncrRefCount()'
240 bool Write(ostream &strm, const FstWriteOptions &opts) const { function in class:fst::AddOnImpl
249 if (!fst_.Write(strm, fopts))
253 if (have_addon) // Write add-on object if present.
254 t_->Write(strm);
/external/chromium_org/jingle/glue/
H A Dchrome_async_socket_unittest.cc747 EXPECT_FALSE(chrome_async_socket_->Write(data.data(), data.size()));
766 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData, 3));
768 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData + 3, 5));
770 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData + 8,
789 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData, 3));
791 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData + 3, 5));
793 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData + 8,
812 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData, 3));
814 EXPECT_TRUE(chrome_async_socket_->Write(kWriteData + 3, 5));
816 EXPECT_TRUE(chrome_async_socket_->Write(kWriteDat
[all...]
H A Dchannel_socket_adapter_unittest.cc110 // Verify that Write sends the packet and returns correct result.
111 TEST_F(TransportChannelSocketAdapterTest, Write) {
117 int result = target_->Write(buffer.get(), kTestDataSize, callback_);
121 // Verify that the message is still sent if Write() is called while
133 int result = target_->Write(buffer.get(), kTestDataSize, callback_);
/external/chromium_org/third_party/skia/tests/
H A DSerializationTest.cpp37 static void Write(SkWriteBuffer& writer, const T* flattenable) { function in struct:SerializationUtils
46 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) { function in struct:SerializationUtils
55 static void Write(SkWriteBuffer& writer, const SkPath* path) { function in struct:SerializationUtils
64 static void Write(SkWriteBuffer& writer, const SkRegion* region) { function in struct:SerializationUtils
73 static void Write(SkWriteBuffer& writer, const SkString* string) { function in struct:SerializationUtils
82 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) { function in struct:SerializationUtils
91 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) { function in struct:SerializationUtils
100 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) { function in struct:SerializationUtils
109 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) { function in struct:SerializationUtils
118 static void Write(SkWriteBuffe function in struct:SerializationUtils
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp171 const int32 status = writer->Write(&b, 1);
199 const int32 status = writer->Write(&byte, 1);
319 if (writer->Write(value, static_cast<const uint32>(length)))
336 if (writer->Write(value, static_cast<uint32>(size)))
401 if (writer->Write(data, static_cast<uint32>(length)))
454 // Write Block element
481 if (writer->Write(data, static_cast<uint32>(length)))
484 // Write Duration element
565 if (writer->Write(data, static_cast<uint32>(length)))
627 if (writer->Write(dat
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp151 const int32 status = writer->Write(&b, 1);
179 const int32 status = writer->Write(&byte, 1);
299 if (writer->Write(value, static_cast<const uint32>(length)))
318 if (writer->Write(value, static_cast<uint32>(size)))
371 if (writer->Write(data, static_cast<uint32>(length)))
427 // Write Block element
454 if (writer->Write(data, static_cast<uint32>(length)))
457 // Write Duration element
548 if (writer->Write(data, static_cast<uint32>(length)))
616 if (writer->Write(dat
[all...]
/external/chromium_org/content/common/
H A Dresource_messages.h37 static void Write(Message* m, const param_type& p);
45 static void Write(Message* m, const param_type& p);
53 static void Write(Message* m, const param_type& p);
61 static void Write(Message* m, const param_type& p);
69 static void Write(Message* m, const param_type& p);
/external/chromium_org/net/url_request/
H A Durl_fetcher_response_writer_unittest.cc37 // Initialize(), Write() and Finish().
41 rv = writer_->Write(buf_.get(), buf_->size(), callback.callback());
73 // Initialize(), Write() and Finish().
77 rv = writer_->Write(buf_.get(), buf_->size(), callback.callback());
96 // Initialize(), Write() and Finish().
100 rv = writer_->Write(buf_.get(), buf_->size(), callback.callback());
110 // Initialize() again to reset. Write different data.
116 rv = writer_->Write(buf2.get(), buf2->size(), callback.callback());
159 // Initialize(), Write() and Finish().
163 rv = writer_->Write(buf
[all...]
H A Durl_fetcher_response_writer.cc36 int URLFetcherStringWriter::Write(IOBuffer* buffer, function in class:net::URLFetcherStringWriter
93 int URLFetcherFileWriter::Write(IOBuffer* buffer, function in class:net::URLFetcherFileWriter
99 int result = file_stream_->Write(buffer, num_bytes,
/external/chromium_org/ppapi/proxy/
H A Dresource_message_params.cc54 IPC::ParamTraits<PP_Resource>::Write(msg, pp_resource_);
55 IPC::ParamTraits<int32_t>::Write(msg, sequence_);
59 IPC::ParamTraits<std::vector<SerializedHandle> >::Write(msg,
158 IPC::ParamTraits<bool>::Write(msg, has_callback_);
200 IPC::ParamTraits<int32_t>::Write(msg, result_);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.h64 bool Write(ostream &strm) const;
253 bool Write(ostream &strm) const { function in class:fst::SymbolTable
254 return impl_->Write(strm);
257 bool Write(const string& filename) const { function in class:fst::SymbolTable
260 LOG(ERROR) << "SymbolTable::Write: Can't open file " << filename;
263 return Write(strm);
/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dwebkit_file_stream_writer_impl.cc69 int WebkitFileStreamWriterImpl::Write(net::IOBuffer* buf, function in class:drive::internal::WebkitFileStreamWriterImpl
78 return local_file_writer_->Write(buf, buf_len, callback);
111 // Write() is not called yet.
123 // There shouldn't be in-flight Write operation.
126 // Here is the case Flush() is called before any Write() invocation.
176 int result = local_file_writer_->Write(buf, buf_len, callback);
/external/chromium_org/content/child/fileapi/
H A Dwebfilewriter_impl.cc50 void Write(const GURL& path, const std::string& id, int64 offset, function in class:content::WebFileWriterImpl::WriterBridge
57 ChildThread::current()->file_system_dispatcher()->Write(
141 RunOnMainThread(base::Bind(&WriterBridge::Write, bridge_,
/external/chromium_org/courgette/
H A Dencoded_program.cc114 // Write a vector as the byte representation of the contents.
127 ok = buffer->Write(static_cast<const void*>(&items[0]), byte_count);
431 if (!output->Write(&op16, 2))
451 if (!output->Write(&op16, 2))
470 if (!output->Write(&decompressed_op, 4))
490 if (!output->Write(&words, 4))
510 if (!output->Write(&words, 4))
568 if (!output->Write(&b, 1))
580 if (!output->Write(&b, 1))
595 if (!output->Write(
[all...]

Completed in 601 milliseconds

1234567891011>>