/external/llvm/tools/lli/ChildTarget/ |
D | ChildTarget.cpp | 36 int WriteBytes(const void *Data, size_t Size) { in WriteBytes() function in LLIChildTarget 37 return RPC.WriteBytes(Data, Size) ? Size : -1; in WriteBytes() 176 int rc = WriteBytes(&MsgType, 4); in sendChildActive() 182 rc = WriteBytes(&DataSize, 4); in sendChildActive() 189 int rc = WriteBytes(&MsgType, 4); in sendAllocationResult() 195 rc = WriteBytes(&DataSize, 4); in sendAllocationResult() 199 rc = WriteBytes(&Addr, 8); in sendAllocationResult() 206 int rc = WriteBytes(&MsgType, 4); in sendLoadStatus() 212 rc = WriteBytes(&DataSize, 4); in sendLoadStatus() 216 rc = WriteBytes(&Status, 4); in sendLoadStatus() [all …]
|
/external/libchrome/base/trace_event/ |
D | trace_event_argument.cc | 45 pickle.WriteBytes(&kTypeCStr, 1); in WriteKeyNameAsRawPtr() 50 pickle.WriteBytes(&kTypeString, 1); in WriteKeyNameWithCopy() 87 pickle_.WriteBytes(&kTypeInt, 1); in SetInteger() 94 pickle_.WriteBytes(&kTypeInt, 1); in SetIntegerWithCopiedName() 101 pickle_.WriteBytes(&kTypeDouble, 1); in SetDouble() 109 pickle_.WriteBytes(&kTypeDouble, 1); in SetDoubleWithCopiedName() 116 pickle_.WriteBytes(&kTypeBool, 1); in SetBoolean() 124 pickle_.WriteBytes(&kTypeBool, 1); in SetBooleanWithCopiedName() 131 pickle_.WriteBytes(&kTypeString, 1); in SetString() 139 pickle_.WriteBytes(&kTypeString, 1); in SetStringWithCopiedName() [all …]
|
/external/webrtc/webrtc/base/ |
D | bytebuffer.cc | 151 WriteBytes(reinterpret_cast<const char*>(&val), 1); in WriteUInt8() 156 WriteBytes(reinterpret_cast<const char*>(&v), 2); in WriteUInt16() 165 WriteBytes(start, 3); in WriteUInt24() 170 WriteBytes(reinterpret_cast<const char*>(&v), 4); in WriteUInt32() 175 WriteBytes(reinterpret_cast<const char*>(&v), 8); in WriteUInt64() 179 WriteBytes(val.c_str(), val.size()); in WriteString() 182 void ByteBuffer::WriteBytes(const char* val, size_t len) { in WriteBytes() function in rtc::ByteBuffer
|
D | bytebuffer.h | 69 void WriteBytes(const char* val, size_t len);
|
/external/tpm2/ |
D | TcpServer.c | 18 BOOL WriteBytes(SOCKET s, char* buffer, int NumBytes); 350 WriteBytes( in WriteBytes() function 390 return WriteBytes(s, (char*) &netVal, 4); in WriteUINT32() 439 res = WriteBytes(s, (char*) &netLength, 4); in WriteVarBytes() 441 res = WriteBytes(s, buffer, BytesToSend); in WriteVarBytes()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zOut.h | 30 void WriteBytes(const void *data, size_t size) in WriteBytes() function 232 void WriteBytes(const void *data, size_t size); 233 void WriteBytes(const CByteBuffer &data) { WriteBytes(data, data.Size()); } in WriteBytes() function
|
D | 7zOut.cpp | 142 void COutArchive::WriteBytes(const void *data, size_t size) in WriteBytes() function in NArchive::N7z::COutArchive 148 _outByte.WriteBytes(data, size); in WriteBytes() 152 _outByte2.WriteBytes(data, size); in WriteBytes() 277 WriteBytes(longID, idSize); in WriteFolder() 286 WriteBytes(coder.Props, propsSize); in WriteFolder()
|
/external/lzma/C/ |
D | XzEnc.c | 34 static SRes WriteBytes(ISeqOutStream *s, const void *buf, UInt32 size) in WriteBytes() function 42 return WriteBytes(s, buf, size); in WriteBytesAndCrc() 54 return WriteBytes(s, header, XZ_STREAM_HEADER_SIZE); in Xz_WriteHeader() 80 return WriteBytes(s, header, pos + 4); in XzBlock_WriteHeader() 112 RINOK(WriteBytes(s, buf, 4)); in Xz_WriteFooter() 124 return WriteBytes(s, buf, 12); in Xz_WriteFooter() 489 RINOK(WriteBytes(&seqSizeOutStream.p, buf, padSize + XzFlags_GetCheckSize(xz->flags))); in Xz_Compress()
|
/external/llvm/tools/lli/ |
D | RemoteTargetExternal.h | 34 bool WriteBytes(const void *Data, size_t Size) { in WriteBytes() function 35 return RPC.WriteBytes(Data, Size); in WriteBytes()
|
D | RemoteTargetExternal.cpp | 273 if (!WriteBytes(&MsgType, 4)) { in SendHeader() 291 if (!WriteBytes(&TotalSize, 4)) { in SendPayload() 300 if (!WriteBytes(SendData[I], Sizes[I])) { in SendPayload()
|
D | RPCChannel.h | 41 bool WriteBytes(const void *Data, size_t Size);
|
/external/sfntly/cpp/src/sfntly/data/ |
D | writable_font_data.cc | 59 int32_t WritableFontData::WriteBytes(int32_t index, in WriteBytes() function in sfntly::WritableFontData 69 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) { in WriteBytes() function in sfntly::WritableFontData 71 return WriteBytes(index, &((*b)[0]), 0, b->size()); in WriteBytes()
|
D | writable_font_data.h | 60 virtual int32_t WriteBytes(int32_t index, 70 virtual int32_t WriteBytes(int32_t index, ByteVector* b);
|
/external/libchrome/base/ |
D | pickle.cc | 293 return WriteBytes(value.data(), static_cast<int>(value.size())); in WriteString() 300 return WriteBytes(value.data(), in WriteString16() 305 return length >= 0 && WriteInt(length) && WriteBytes(data, length); in WriteData() 308 bool Pickle::WriteBytes(const void* data, int length) { in WriteBytes() function in base::Pickle
|
D | pickle.h | 207 bool WriteBytes(const void* data, int length);
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | h264_sps_parser.cc | 46 rbsp_buffer.WriteBytes(sps_bytes + i, 2); in Parse() 50 rbsp_buffer.WriteBytes(sps_bytes + i, 1); in Parse()
|
D | h264_bitstream_parser.cc | 77 rbsp_buffer->WriteBytes(reinterpret_cast<const char*>(bytes) + i, 2); in ParseRbsp() 80 rbsp_buffer->WriteBytes(reinterpret_cast<const char*>(bytes) + i, 1); in ParseRbsp()
|
/external/webrtc/webrtc/p2p/base/ |
D | stun.cc | 431 buf->WriteBytes(zeroes, 4 - remainder); in WritePadding() 548 buf->WriteBytes(reinterpret_cast<char*>(&v4addr), sizeof(v4addr)); in Write() 553 buf->WriteBytes(reinterpret_cast<char*>(&v6addr), sizeof(v6addr)); in Write() 632 buf->WriteBytes(reinterpret_cast<const char*>(&v4addr), sizeof(v4addr)); in Write() 637 buf->WriteBytes(reinterpret_cast<const char*>(&v6addr), sizeof(v6addr)); in Write() 751 buf->WriteBytes(bytes_, length()); in Write()
|
/external/llvm/tools/lli/Unix/ |
D | RPCChannel.inc | 108 bool RPCChannel::WriteBytes(const void *Data, size_t Size) { 110 return CheckError(rc, Size, "WriteBytes");
|
/external/lzma/CPP/7zip/Common/ |
D | OutBuffer.h | 54 void WriteBytes(const void *data, size_t size) in WriteBytes() function
|
/external/llvm/tools/lli/Windows/ |
D | RPCChannel.inc | 21 bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; }
|
/external/libchrome/crypto/ |
D | secure_hash_default.cc | 53 !pickle->WriteBytes(&ctx_, sizeof(ctx_))) { in Serialize()
|
D | secure_hash_openssl.cc | 56 !pickle->WriteBytes(&ctx_, sizeof(ctx_))) { in Serialize()
|
/external/webrtc/talk/media/base/ |
D | testutils.cc | 59 buf->WriteBytes(payload, sizeof(payload)); in WriteToByteBuffer() 96 buf->WriteBytes(payload, sizeof(payload)); in WriteToByteBuffer()
|
/external/sfntly/cpp/src/test/ |
D | font_data_test.cc | 193 wfd->WriteBytes(index, &(buffer[0]), 0, buffer.size()); in WriteFontDataWithBuffer() 206 wfd->WriteBytes(index, &(b[0]), index, sliding_size); in WriteFontDataWithSlidingWindow()
|