Searched defs:ReadBytes (Results 1 - 16 of 16) sorted by relevance

/external/llvm/tools/lli/
H A DRemoteTargetExternal.h38 bool ReadBytes(void *Data, size_t Size) { return RPC.ReadBytes(Data, Size); } function in class:llvm::RemoteTargetExternal
/external/lzma/CPP/7zip/Common/
H A DInBuffer.cpp98 size_t CInBufferBase::ReadBytes(Byte *buf, size_t size) function in class:CInBufferBase
/external/google-breakpad/src/common/mac/
H A Dmacho_walker.cc103 bool MachoWalker::ReadBytes(void *buffer, size_t size, off_t offset) { function in class:MacFileUtilities::MachoWalker
136 if (!ReadBytes(&magic, sizeof(magic), 0))
155 if (!ReadBytes(&header, sizeof(header), 0))
173 if (!ReadBytes(&fat, sizeof(fat), offset))
184 if (!ReadBytes(&arch, sizeof(arch), offset))
206 if (!ReadBytes(&header, sizeof(header), offset))
232 if (!ReadBytes(&header, sizeof(header), offset))
254 if (!ReadBytes(&cmd, sizeof(cmd), offset))
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp39 int ReadBytes(void *Data, size_t Size) { function in class:LLIChildTarget
40 return RPC.ReadBytes(Data, Size) ? Size : -1;
69 if (ReadBytes(&MsgType, 4) > 0)
101 int rc = ReadBytes(&DataSize, 4);
109 rc = ReadBytes(&Alignment, 4);
111 rc = ReadBytes(&AllocSize, 4);
125 int rc = ReadBytes(&DataSize, 4);
131 rc = ReadBytes(&Addr, 8);
139 rc = ReadBytes((void*)Addr, BufferSize);
154 int rc = ReadBytes(
[all...]
/external/webrtc/webrtc/base/
H A Dbytebuffer.cc72 return ReadBytes(reinterpret_cast<char*>(val), 1);
79 if (!ReadBytes(reinterpret_cast<char*>(&v), 2)) {
96 if (!ReadBytes(read_into, 3)) {
108 if (!ReadBytes(reinterpret_cast<char*>(&v), 4)) {
120 if (!ReadBytes(reinterpret_cast<char*>(&v), 8)) {
140 bool ByteBuffer::ReadBytes(char* val, size_t len) { function in class:rtc::ByteBuffer
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite.cc462 bool WireFormatLite::ReadBytes(io::CodedInputStream* input, function in class:google::protobuf::internal::WireFormatLite
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.cc82 int32_t ReadableFontData::ReadBytes(int32_t index, function in class:sfntly::ReadableFontData
/external/tpm2/
H A DTcpServer.c15 BOOL ReadBytes(SOCKET s, char* buffer, int NumBytes);
100 ok = ReadBytes(s, (char*) &Command, 4);
314 // ReadBytes()
319 ReadBytes( function
409 res = ReadBytes(s, (char*) &length, 4);
419 res = ReadBytes(s, buffer, length);
466 ok = ReadBytes(s, (char*) &Command, 4);
489 ok = ReadBytes(s, (char*) &locality, 1);
524 ok = ReadBytes(s, (char*)&clientVersion, 4);
537 ok = ReadBytes(
[all...]
/external/libchrome/base/
H A Dpickle.cc200 return ReadBytes(data, *length);
203 bool PickleIterator::ReadBytes(const char** data, int length) { function in class:base::PickleIterator
/external/llvm/lib/Support/
H A DMemoryBuffer.cpp231 ssize_t ReadBytes; local
235 ReadBytes = read(FD, Buffer.end(), ChunkSize);
236 if (ReadBytes == -1) {
240 Buffer.set_size(Buffer.size() + ReadBytes);
241 } while (ReadBytes != 0);
/external/v8/src/
H A Dutils.cc247 byte* ReadBytes(const char* filename, int* size, bool verbose) { function in namespace:v8::internal
/external/lzma/CPP/7zip/Archive/7z/
H A D7zIn.h293 void ReadBytes(Byte *data, size_t size);
346 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); } function in class:NArchive::N7z::CInArchive
H A D7zIn.cpp194 void CInByte2::ReadBytes(Byte *data, size_t size) function in class:NArchive::N7z::CInByte2
456 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
1242 ReadBytes(db.NamesBuf, rem);
1357 ReadBytes(db.SecureBuf + offset, db.SecureOffsets[i + 1] - offset);
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py264 def ReadBytes (stream, length): function
631 msg = ReadBytes(stream, length)
663 msg = ReadBytes(stream, length)
697 msg = ReadBytes(stream, length)
/external/google-breakpad/src/processor/
H A Dminidump.cc451 if (!minidump_->ReadBytes(context_amd64.get(),
553 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) {
587 if (!minidump_->ReadBytes(context_after_flags,
650 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) {
684 if (!minidump_->ReadBytes(context_after_flags,
730 if (!minidump_->ReadBytes(&context_flags, sizeof(context_flags))) {
781 if (!minidump_->ReadBytes(context_after_flags,
854 if (!minidump_->ReadBytes(context_after_flags,
930 if (!minidump_->ReadBytes(context_after_flags,
986 if (!minidump_->ReadBytes(context_after_flag
4426 bool Minidump::ReadBytes(void* bytes, size_t count) { function in class:google_breakpad::Minidump
[all...]
/external/v8/tools/
H A Dgrokdump.py709 def ReadBytes(self, address, size): member in class:MinidumpReader
1201 self.chars = heap.reader.ReadBytes(self.address + self.CharsOffset(),
1231 raw_chars = reader.ReadBytes(chars_ptr, 2 * self.length)
3216 for c in reader.ReadBytes(slot, reader.PointerSize())]

Completed in 952 milliseconds