Searched defs:ReadBytes (Results 1 - 14 of 14) 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.h59 UInt32 ReadBytes(Byte *buf, UInt32 size) function in class:CInBuffer
/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/lzma/CPP/7zip/Archive/7z/
H A D7zIn.h112 void ReadBytes(Byte *data, size_t size);
158 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); } function in class:NArchive::N7z::CInArchive
H A D7zIn.cpp190 void CInByte2::ReadBytes(Byte *data, size_t size) function in class:NArchive::N7z::CInByte2
403 ReadBytes(longID, idSize);
425 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
/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/llvm/lib/Support/
H A DMemoryBuffer.cpp229 ssize_t ReadBytes; local
233 ReadBytes = read(FD, Buffer.end(), ChunkSize);
234 if (ReadBytes == -1) {
238 Buffer.set_size(Buffer.size() + ReadBytes);
239 } while (ReadBytes != 0);
/external/v8/src/
H A Dutils.cc222 byte* ReadBytes(const char* filename, int* size, bool verbose) { function in namespace:v8::internal
/external/lldb/source/Core/
H A DAddress.cpp29 ReadBytes (ExecutionContextScope *exe_scope, const Address &address, void *dst, size_t dst_len) function
82 success = ReadBytes (exe_scope, address, &buf, byte_size) == byte_size;
147 if (ReadBytes (exe_scope, address, &buf[0], buf.size()) == buf.size())
187 while ((bytes_read = ReadBytes (exe_scope, curr_address, buf, k_buf_len)) > 0)
/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.py620 def ReadBytes(self, address, size): member in class:MinidumpReader
1090 self.chars = heap.reader.ReadBytes(self.address + self.CharsOffset(),
1120 raw_chars = reader.ReadBytes(chars_ptr, 2 * self.length)
3107 for c in reader.ReadBytes(slot, reader.PointerSize())]

Completed in 3375 milliseconds