HomeSort by relevance Sort by last modified time
    Searched defs:WriteBytes (Results 1 - 21 of 21) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
PyUtility.c 32 UINTN WriteBytes;
62 while (WriteFile(FileHandle, Data, DataLength, &WriteBytes, NULL)) {
63 if (DataLength <= WriteBytes) {
68 Data += WriteBytes;
69 DataLength -= WriteBytes;
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
data.go 173 // WriteBytes writes a slice of bytes into s at offset off.
174 func (s *LSym) WriteBytes(ctxt *Link, off int64, b []byte) int64 {
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
data.go 173 // WriteBytes writes a slice of bytes into s at offset off.
174 func (s *LSym) WriteBytes(ctxt *Link, off int64, b []byte) int64 {
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Protocol/
I2cMasterMcg.h 347 UINT32 WriteBytes;
356 /// The WriteBuffer must be at least WriteBytes in length.
459 @retval EFI_BAD_BUFFER_SIZE The WriteBytes or ReadBytes buffer size is too large.
  /external/lzma/CPP/7zip/Common/
OutBuffer.h 54 void WriteBytes(const void *data, size_t size)
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCObjectWriter.h 178 void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 62 int32_t WritableFontData::WriteBytes(int32_t index,
72 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) {
74 return WriteBytes(index, &((*b)[0]), 0, b->size());
  /external/webrtc/webrtc/base/
bytebuffer.cc 151 WriteBytes(reinterpret_cast<const char*>(&val), 1);
156 WriteBytes(reinterpret_cast<const char*>(&v), 2);
165 WriteBytes(start, 3);
170 WriteBytes(reinterpret_cast<const char*>(&v), 4);
175 WriteBytes(reinterpret_cast<const char*>(&v), 8);
179 WriteBytes(val.c_str(), val.size());
182 void ByteBuffer::WriteBytes(const char* val, size_t len) {
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 30 void WriteBytes(const void *data, size_t size)
234 void WriteBytes(const void *data, size_t size);
235 void WriteBytes(const CByteBuffer &data) { WriteBytes(data, data.Size()); }
7zOut.cpp 142 void COutArchive::WriteBytes(const void *data, size_t size)
148 _outByte.WriteBytes(data, size);
152 _outByte2.WriteBytes(data, size);
279 WriteBytes(temp, idSize + 1);
288 WriteBytes(coder.Props, propsSize);
775 WriteBytes(db.SecureBuf, db.SecureBuf.Size());
  /external/protobuf/csharp/src/Google.Protobuf/
CodedOutputStream.cs 311 public void WriteBytes(ByteString value)
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 428 void WireFormatLite::WriteBytes(int field_number, const string& value,
  /external/tpm2/
TcpServer.c 18 BOOL WriteBytes(SOCKET s, char* buffer, int NumBytes);
345 // WriteBytes()
350 WriteBytes(
390 return WriteBytes(s, (char*) &netVal, 4);
439 res = WriteBytes(s, (char*) &netLength, 4);
441 res = WriteBytes(s, buffer, BytesToSend);
  /external/v8/src/
utils.cc 331 int WriteBytes(const char* filename,
eh-frame.h 133 void WriteBytes(const byte* start, int size) {
137 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
140 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
  /system/core/libziparchive/
zip_writer.cc 319 int32_t ZipWriter::WriteBytes(const void* data, size_t len) {
  /external/libchrome/base/
pickle.cc 335 return WriteBytes(value.data(), static_cast<int>(value.size()));
342 return WriteBytes(value.data(),
347 return length >= 0 && WriteInt(length) && WriteBytes(data, length);
350 bool Pickle::WriteBytes(const void* data, int length) {
  /external/lzma/C/
XzEnc.c 27 static SRes WriteBytes(ISeqOutStream *s, const void *buf, UInt32 size)
35 return WriteBytes(s, buf, size);
47 return WriteBytes(s, header, XZ_STREAM_HEADER_SIZE);
77 return WriteBytes(s, header, pos + 4);
113 RINOK(WriteBytes(s, buf, 4));
125 return WriteBytes(s, buf, 12);
503 RINOK(WriteBytes(&seqSizeOutStream.p, buf, padSize + XzFlags_GetCheckSize(xz->flags)));
  /external/protobuf/src/google/protobuf/util/internal/
proto_writer.cc 243 inline Status WriteBytes(int field_number, const DataPiece& data,
247 WireFormatLite::WriteBytes(field_number, c.ValueOrDie(), stream);
630 status = WriteBytes(field.number(), data, stream_.get());
  /external/sonivox/jet_tools/JetCreator/
midifile.py 281 def WriteBytes (stream, bytes):
292 WriteBytes(stream, bytes)
642 WriteBytes(stream, self.msg)
674 WriteBytes(stream, self.msg)
710 WriteBytes(stream, self.msg)
    [all...]
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 799 WriteBytes(str, len + 1);
    [all...]

Completed in 740 milliseconds