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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 73 virtual StreamResult Write(const void* data, size_t data_len,
281 StreamResult PseudoTcpChannel::Write(const void* data, size_t data_len,
584 StreamResult PseudoTcpChannel::InternalStream::Write(
591 return parent_->Write(data, data_len, written, error);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
hangoutpubsubclient.cc 51 virtual XmlElement* Write(const QName& state_name, const bool& state) {
  /external/chromium_org/third_party/ots/include/
opentype-sanitiser.h 46 // This should be implemented to perform the actual write.
49 bool Write(const void *data, size_t length) {
99 if (!Write(&kZerob, 1)) return false;
106 return Write(&v, sizeof(v));
111 return Write(&v, sizeof(v));
116 return Write(&v, sizeof(v));
121 return Write(reinterpret_cast<uint8_t*>(&v)+1, 3);
126 return Write(&v, sizeof(v));
131 return Write(&v, sizeof(v));
135 return Write(&v, sizeof(v))
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 235 bool FileOutputStream::CopyingFileOutputStream::Write(
245 bytes = write(file_, buffer_base + total_written, size - total_written);
249 // Write error.
251 // FIXME(kenton): According to the man page, if write() returns zero,
252 // there was no error; write() simply did not write anything. It's
343 bool OstreamOutputStream::CopyingOstreamOutputStream::Write(
345 output_->write(reinterpret_cast<const char*>(buffer), size);
  /external/chromium_org/third_party/skia/tests/
SerializationTest.cpp 24 // Test memory read/write functions directly
34 static void Write(SkWriteBuffer& writer, const T* flattenable) {
43 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
52 static void Write(SkWriteBuffer& writer, const SkPath* path) {
61 static void Write(SkWriteBuffer& writer, const SkRegion* region) {
70 static void Write(SkWriteBuffer& writer, const SkString* string) {
79 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
88 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
97 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
106 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize)
    [all...]
  /external/chromium_org/tools/android/forwarder2/
socket.cc 234 if (!WaitForEvent(WRITE, kConnectTimeOut)) {
334 int Socket::Write(const void* buffer, size_t count) {
335 if (!WaitForEvent(WRITE, kNoTimeout)) {
386 ret = Write(static_cast<const char*>(buffer) + bytes_written,
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
android.py 129 Its only real entry point is Write(), and is mostly used for namespacing.
135 def Write(self, qualified_target, relative_target, base_path, output_filename,
144 output_filename: output .mk file name to write
154 self.fp.write(header)
257 """Write Makefile code for any 'actions' from the gyp input.
301 # Only write the gyp_* rules for the "primary" output (:1);
351 """Write Makefile code for any 'rules' from the gyp input.
439 """Write Makefile code for any 'copies' from the gyp input.
479 """Write out the flags and include paths used to compile source files for
531 """Write Makefile code for any 'sources' from the gyp input
    [all...]
make.py 236 # We instead explicitly write all the rules we care about.
317 # We write to a dep file on the side first and then rename at the end
387 # This allows us to read/write command lines with shell variables (e.g.
511 writer.write('# Suffix rules, putting all outputs into $(obj).\n')
513 writer.write('$(obj).$(TOOLSET)/%%.o: $(srcdir)/%%%s FORCE_DO_CMD\n' % ext)
514 writer.write('\t@$(call do_cmd,%s,1)\n' % COMPILABLE_EXTENSIONS[ext])
516 writer.write('\n# Try building from generated source, too.\n')
518 writer.write(
520 writer.write('\t@$(call do_cmd,%s,1)\n' % COMPILABLE_EXTENSIONS[ext])
521 writer.write('\n'
    [all...]
xcode.py 151 sys.stderr.write("Problem with gyp file %s\n" % self.gyp_path)
419 def Write(self):
420 # Write the project file to a temporary location first. Xcode watches for
740 # There's no need to write anything into the script to ensure that the
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_impl.cc 165 void FileSystemOperationImpl::Write(
220 // We can only get here on a write or truncate that's not yet completed.
file_system_operation_runner.cc 238 OperationID FileSystemOperationRunner::Write(
258 // Write is not supported.
277 operation->Write(
  /external/lldb/source/Core/
ConnectionFileDescriptor.cpp 347 write (m_pipe_write, "q", 1);
505 ConnectionFileDescriptor::Write (const void *src, size_t src_len, ConnectionStatus &status, Error *error_ptr)
509 log->Printf ("%p ConnectionFileDescriptor::Write (src = %p, src_len = %" PRIu64 ")", this, src, (uint64_t)src_len);
526 case eFDTypeFile: // Other FD requireing read/write
529 bytes_sent = ::write (m_fd_send, src, src_len);
563 case eFDTypeFile: // Other FD requireing read/write
564 log->Printf ("%p ConnectionFileDescriptor::Write() ::write (fd = %i, src = %p, src_len = %" PRIu64 ") => %" PRIi64 " (error = %s)",
574 log->Printf ("%p ConnectionFileDescriptor::Write() ::send (socket = %i, src = %p, src_len = %" PRIu64 ", flags = 0) => %" PRIi64 " (error = %s)",
584 log->Printf ("%p ConnectionFileDescriptor::Write() ::sendto (socket = %i, src = %p, src_len = %" PRIu64 ", flags = 0) => %" PRIi64 " (error = %s)"
    [all...]
  /external/lldb/source/Host/common/
File.cpp 195 const bool write = options & eOpenOptionWrite; local
196 if (write)
515 File::Write (const void *buf, size_t &num_bytes)
523 bytes_written = ::write (m_descriptor, buf, num_bytes);
645 File::Write (const void *buf, size_t &num_bytes, off_t &offset)
705 Write (s, s_len);
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDarwin_i386.h 142 Write = 1,
149 int gpr_errs[2]; // Read/Write errors
150 int fpu_errs[2]; // Read/Write errors
151 int exc_errs[2]; // Read/Write errors
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.h 74 virtual uint32_t EnableHardwareWatchpoint (nub_addr_t addr, nub_size_t size, bool read, bool write, bool also_set_on_task);
111 Write = 1,
141 kern_return_t gpr_errs[2]; // Read/Write errors
142 kern_return_t vfp_errs[2]; // Read/Write errors
143 kern_return_t exc_errs[2]; // Read/Write errors
144 kern_return_t dbg_errs[2]; // Read/Write errors
  /external/lldb/tools/debugserver/source/MacOSX/i386/
DNBArchImplI386.h 57 virtual uint32_t EnableHardwareWatchpoint (nub_addr_t addr, nub_size_t size, bool read, bool write, bool also_set_on_task);
106 Write = 1,
124 kern_return_t gpr_errs[2]; // Read/Write errors
125 kern_return_t fpu_errs[2]; // Read/Write errors
126 kern_return_t exc_errs[2]; // Read/Write errors
127 kern_return_t dbg_errs[2]; // Read/Write errors
224 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.h 56 virtual uint32_t EnableHardwareWatchpoint (nub_addr_t addr, nub_size_t size, bool read, bool write, bool also_set_on_task);
105 Write = 1,
123 kern_return_t gpr_errs[2]; // Read/Write errors
124 kern_return_t fpu_errs[2]; // Read/Write errors
125 kern_return_t exc_errs[2]; // Read/Write errors
126 kern_return_t dbg_errs[2]; // Read/Write errors
231 static void SetWatchpoint(DBG &debug_state, uint32_t hw_index, nub_addr_t addr, nub_size_t size, bool read, bool write);
  /external/lldb/tools/lldb-perf/lib/
Results.h 59 Write (Results &results) = 0;
148 Write (Results &results)
175 Write (Results &results)
217 Write (Results &results)
246 Write (Results &results)
275 Write (Results &results)
305 Write (const char *path);
  /external/lzma/CPP/Windows/
FileIO.cpp 316 // If you Read or Write 64MB or more (probably min_failure_size = 64MB - 32KB + 1)
403 bool COutFile::Write(const void *data, UInt32 size, UInt32 &processedSize)
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 140 public override void Write(byte[] buffer, int offset, int count)
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/pdfium/core/src/fxcrt/
fx_basic_buffer.cpp 322 void CFX_ArchiveSaver::Write(const void* pData, FX_STRSIZE dwSize)
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 234 bool FileOutputStream::CopyingFileOutputStream::Write(
244 bytes = write(file_, buffer_base + total_written, size - total_written);
248 // Write error.
250 // FIXME(kenton): According to the man page, if write() returns zero,
251 // there was no error; write() simply did not write anything. It's
342 bool OstreamOutputStream::CopyingOstreamOutputStream::Write(
344 output_->write(reinterpret_cast<const char*>(buffer), size);
  /external/skia/tests/
SerializationTest.cpp 24 // Test memory read/write functions directly
34 static void Write(SkWriteBuffer& writer, const T* flattenable) {
43 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) {
52 static void Write(SkWriteBuffer& writer, const SkPath* path) {
61 static void Write(SkWriteBuffer& writer, const SkRegion* region) {
70 static void Write(SkWriteBuffer& writer, const SkString* string) {
79 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) {
88 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) {
97 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) {
106 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
const-fst.h 70 bool Write(ostream &strm, const FstWriteOptions &opts) const;
196 bool ConstFstImpl<A>::Write(ostream &strm,
207 strm.write("", 1);
208 strm.write(reinterpret_cast<char *>(states_),
211 strm.write("", 1);
212 strm.write(reinterpret_cast<char *>(arcs_), narcs_ * sizeof(A));
215 LOG(ERROR) << "ConstFst::Write: Write failed: " << opts.source;
287 LOG(ERROR) << "ConstFst::Write: Can't open file: " << filename;
293 // Write a ConstFst to an output stream; return false on erro
    [all...]
encode.h 128 bool Write(ostream &strm, const string &source) const {
137 tuple->weight.Write(strm);
141 LOG(ERROR) << "EncodeTable::Write: write failed: " << source;
278 bool Write(ostream &strm, const string& source) {
279 return table_->Write(strm, source);
282 bool Write(const string& filename) {
288 return Write(strm, filename);

Completed in 1169 milliseconds

1 2 3 4 5 6 7 8 91011>>