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

1 2 3

  /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/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/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) {
bytebuffer.h 55 bool ReadBytes(char* val, size_t len);
  /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/libchrome/crypto/
secure_hash_default.cc 76 if (!data_iterator->ReadBytes(&data, sizeof(ctx_)))
secure_hash_openssl.cc 82 if (!data_iterator->ReadBytes(&data, sizeof(ctx_)))
  /external/lzma/CPP/7zip/Common/
InBuffer.h 78 size_t ReadBytes(Byte *buf, size_t size);
InBuffer.cpp 98 size_t CInBufferBase::ReadBytes(Byte *buf, size_t size)
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DirectXHelper.h 37 Streams::DataReader::FromBuffer(fileBuffer)->ReadBytes(fileData);
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DirectXHelper.h 37 Streams::DataReader::FromBuffer(fileBuffer)->ReadBytes(fileData);
  /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/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); }
  /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,
  /prebuilts/go/darwin-x86/src/cmd/yacc/testdata/expr/
expr.y 192 line, err := in.ReadBytes('\n')
197 log.Fatalf("ReadBytes: %s", err)
  /prebuilts/go/linux-x86/src/cmd/yacc/testdata/expr/
expr.y 192 line, err := in.ReadBytes('\n')
197 log.Fatalf("ReadBytes: %s", err)

Completed in 499 milliseconds

1 2 3