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

  /external/llvm/tools/lli/
RemoteTargetExternal.h 38 bool ReadBytes(void *Data, size_t Size) { return RPC.ReadBytes(Data, Size); }
  /external/lzma/CPP/7zip/Common/
InBuffer.cpp 98 size_t CInBufferBase::ReadBytes(Byte *buf, size_t size)
  /external/google-breakpad/src/common/mac/
macho_walker.cc 103 bool MachoWalker::ReadBytes(void *buffer, size_t size, off_t offset) {
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/
ChildTarget.cpp 39 int ReadBytes(void *Data, size_t Size) {
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(&DataSize, 4)
    [all...]
  /external/webrtc/webrtc/base/
bytebuffer.cc 72 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) {
  /external/libchrome/base/
pickle.cc 200 return ReadBytes(data, *length);
203 bool PickleIterator::ReadBytes(const char** data, int length) {
  /external/llvm/lib/Support/
MemoryBuffer.cpp 231 ssize_t ReadBytes;
235 ReadBytes = read(FD, Buffer.end(), ChunkSize);
236 if (ReadBytes == -1) {
240 Buffer.set_size(Buffer.size() + ReadBytes);
241 } while (ReadBytes != 0);
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 462 bool WireFormatLite::ReadBytes(io::CodedInputStream* input,
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 82 int32_t ReadableFontData::ReadBytes(int32_t index,
  /external/tpm2/
TcpServer.c 15 BOOL ReadBytes(SOCKET s, char* buffer, int NumBytes);
100 ok = ReadBytes(s, (char*) &Command, 4);
314 // ReadBytes()
319 ReadBytes(
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(s, (char*)&result, 4)
    [all...]
  /external/v8/src/
utils.cc 247 byte* ReadBytes(const char* filename, int* size, bool verbose) {
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 293 void ReadBytes(Byte *data, size_t size);
346 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); }
7zIn.cpp 194 void CInByte2::ReadBytes(Byte *data, size_t size)
456 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
1242 ReadBytes(db.NamesBuf, rem);
    [all...]
  /art/runtime/
trace.cc 627 static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
640 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
    [all...]
  /external/sonivox/jet_tools/JetCreator/
midifile.py 264 def ReadBytes (stream, length):
631 msg = ReadBytes(stream, length)
663 msg = ReadBytes(stream, length)
697 msg = ReadBytes(stream, length)
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 451 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,
    [all...]
  /external/v8/tools/
grokdump.py 709 def ReadBytes(self, address, size):
    [all...]

Completed in 1581 milliseconds