HomeSort by relevance Sort by last modified time
    Searched defs:Write (Results 1 - 25 of 374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/bcinfo/Wrap/
wrapper_output.cpp 19 bool WrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
20 // Default implementation that uses the byte write routine.
22 if (!Write(buffer[i])) return false;
file_wrapper_output.cpp 34 bool FileWrapperOutput::Write(uint8_t byte) {
38 bool FileWrapperOutput::Write(const uint8_t* buffer, size_t buffer_size) {
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.cpp 7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize)
11 result = _stream->Write(data, size, &size);
DummyOutStream.cpp 7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
17 result = _stream->Write(data, size, &realProcessedSize);
  /external/chromium_org/chrome/common/
render_messages.cc 9 void ParamTraits<ContentSettingsPattern>::Write(
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_nonchromeos.cc 18 void Operation::Write(const base::Closure& continuation) {
37 &ImageWriterUtilityClient::Write,
  /external/lldb/source/Core/
StreamAsynchronousIO.cpp 48 StreamAsynchronousIO::Write (const void *s, size_t length)
50 m_accumulated_data.Write (s, length);
StreamFile.cpp 68 StreamFile::Write (const void *s, size_t length)
70 m_file.Write (s, length);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.cpp 75 // Write Fst magic number and Fst header.
76 bool FstHeader::Write(ostream &strm, const string &source) const {
87 LOG(ERROR) << "FstHeader::Write: write failed: " << source;
  /external/chromium_org/gpu/ipc/
gpu_command_buffer_traits.cc 10 void ParamTraits<gpu::CommandBuffer::State> ::Write(Message* m,
42 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) {
62 void ParamTraits<gpu::MailboxHolder>::Write(Message* m, const param_type& p) {
  /external/chromium_org/ipc/
ipc_message_utils_impl.h 15 void MessageSchema<ParamType>::Write(Message* msg, const RefParam& p) {
29 void SyncMessageSchema<SendParamType, ReplyParamType>::Write(
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 27 void MemoryOutputStream::Write(ByteVector* buffer) {
31 void MemoryOutputStream::Write(ByteVector* buffer,
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
57 void MemoryOutputStream::Write(byte_t b) {
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 31 int Write = __llvm_profile_write_buffer(Buffer);
33 return Write;
36 // Don't write it out. Since we're checking the symbols, we don't have libc
40 // Actually write it out so we can FileCheck the output.
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 15 STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
17 return _stream->Write(data, size, processedSize);
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 27 void MemoryOutputStream::Write(ByteVector* buffer) {
31 void MemoryOutputStream::Write(ByteVector* buffer,
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
57 void MemoryOutputStream::Write(byte_t b) {
  /art/runtime/base/unix_file/
null_file.cc 54 int64_t NullFile::Write(const char* buf, int64_t byte_count, int64_t offset) {
  /external/ceres-solver/internal/ceres/
block_jacobian_writer.h 32 // misleading, since the Write() operation on the block jacobian writer does not
33 // write anything. Instead, the Prepare() method on the BlockEvaluatePreparers
60 // This makes the final Write() a nop.
65 void Write(int /* residual_id */,
83 // that block, it's possible to write to it.
  /external/chromium_org/base/
location.cc 42 void Location::Write(bool display_filename, bool display_function_name,
  /external/chromium_org/build/android/gyp/util/
md5_check.py 31 md5_checker.Write()
84 def Write(self):
86 new_record.write(self.new_digest)
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data.cc 30 void BrowserActionDragData::Write(
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data_views.cc 29 void BookmarkNodeData::Write(const base::FilePath& profile_path,
33 // If there is only one element and it is a URL, write the URL to the
  /external/chromium_org/content/common/
content_param_traits.h 34 static void Write(Message* m, const param_type& p);
42 static void Write(Message* m, const param_type& p) {
57 static void Write(Message* m, const param_type& p);
gamepad_param_traits.cc 33 void ParamTraits<WebGamepad>::Write(
  /external/chromium_org/content/common/input/
input_param_traits.cc 28 void ParamTraits<content::ScopedWebInputEvent>::Write(Message* m,
56 void ParamTraits<content::SyntheticGesturePacket>::Write(Message* m,
  /external/chromium_org/content/public/common/
common_param_traits.h 52 static void Write(Message* m, const param_type& p);
60 static void Write(Message* m, const param_type& p);
68 static void Write(Message* m, const param_type& p);
76 static void Write(Message* m, const param_type& p);
84 static void Write(Message* m, const param_type& p);
92 static void Write(Message* m, const param_type& p);
100 static void Write(Message* m, const param_type& p);
108 static void Write(Message* m, const param_type& p);
116 static void Write(Message* m, const param_type& p);
124 static void Write(Message* m, const param_type& p)
    [all...]

Completed in 1714 milliseconds

1 2 3 4 5 6 7 8 91011>>