HomeSort by relevance Sort by last modified time
    Searched refs:ReadBytes (Results 1 - 25 of 35) sorted by null

1 2

  /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/llvm/tools/lli/
RPCChannel.h 42 bool ReadBytes(void *Data, size_t Size);
RemoteTargetExternal.h 38 bool ReadBytes(void *Data, size_t Size) { return RPC.ReadBytes(Data, Size); }
RemoteTargetExternal.cpp 215 if (!ReadBytes(&MsgType, 4)) {
242 if (!ReadBytes(&DataSize, 4)) {
259 if (!ReadBytes(ReceiveData[I], Sizes[I])) {
  /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))
macho_id.cc 148 if (!walker->ReadBytes(buffer, buffer_size, file_offset))
260 if (!walker->ReadBytes(&seg, sizeof(seg), offset))
277 if (!walker->ReadBytes(&sec, sizeof(sec), offset))
293 if (!walker->ReadBytes(&seg64, sizeof(seg64), offset))
310 if (!walker->ReadBytes(&sec64, sizeof(sec64), offset))
338 if (!walker->ReadBytes(uuid_cmd, sizeof(struct breakpad_uuid_command),
358 if (!walker->ReadBytes(dylib_cmd, sizeof(struct dylib_command), offset))
macho_walker.h 70 bool ReadBytes(void *buffer, size_t size, off_t offset);
  /external/sfntly/cpp/src/test/
font_parsing_test.cc 67 wfd->ReadBytes(0, &(b[0]), 0, TTF_LENGTH[SAMPLE_TTF_FEAT]);
93 wfd1->ReadBytes(0, &(b1[0]), 0, TTF_LENGTH[i]);
94 wfd2->ReadBytes(0, &(b2[0]), 0, TTF_LENGTH[i]);
font_data_test.cc 158 int32_t bytes_read = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size());
173 rfd->ReadBytes(index, &((*b)[0]), index, actual_window_size);
192 int32_t bytesRead = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size());
205 int32_t bytes_read = rfd->ReadBytes(index, &(b[0]), index, sliding_size);
  /external/lzma/CPP/7zip/Common/
InBuffer.h 59 UInt32 ReadBytes(Byte *buf, UInt32 size)
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 112 void ReadBytes(Byte *data, size_t size);
158 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); }
7zIn.cpp 190 void CInByte2::ReadBytes(Byte *data, size_t size)
403 ReadBytes(longID, idSize);
425 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
    [all...]
  /external/llvm/lib/Support/
MemoryBuffer.cpp 229 ssize_t ReadBytes;
233 ReadBytes = read(FD, Buffer.end(), ChunkSize);
234 if (ReadBytes == -1) {
238 Buffer.set_size(Buffer.size() + ReadBytes);
239 } while (ReadBytes != 0);
  /external/google-breakpad/src/processor/
minidump_dump.cc 71 if (!minidump->ReadBytes(&contents[0], length)) {
73 BPLOG(ERROR) << "minidump.ReadBytes failed";
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/sfntly/cpp/src/sfntly/data/
readable_font_data.h 90 virtual int32_t ReadBytes(int32_t index,
readable_font_data.cc 82 int32_t ReadableFontData::ReadBytes(int32_t index,
  /external/lldb/source/Core/
Address.cpp 29 ReadBytes (ExecutionContextScope *exe_scope, const Address &address, void *dst, size_t dst_len)
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)
    [all...]
  /external/sfntly/cpp/src/sfntly/
font_factory.cc 205 rfd->ReadBytes(0, &(tag[0]), 0, tag.size());
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.cc 171 data_->ReadBytes(Offset::kPanose, &((*value)[0]), 0, 10);
194 data_->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
420 InternalReadData()->ReadBytes(Offset::kPanose,
473 InternalReadData()->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
  /external/v8/test/cctest/
test-serialize.cc 278 byte* str = ReadBytes(snapshot_file, &len);
492 byte* snapshot = ReadBytes(file_name, &snapshot_size);
614 byte* snapshot = ReadBytes(file_name, &snapshot_size);
  /art/runtime/
trace.cc 616 static uint64_t ReadBytes(uint8_t* buf, size_t bytes) {
629 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid));
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
minidump.h     [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 462 bool WireFormatLite::ReadBytes(io::CodedInputStream* input,
  /external/v8/src/
utils.cc 222 byte* ReadBytes(const char* filename, int* size, bool verbose) {

Completed in 1084 milliseconds

1 2