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

1 2

  /external/llvm/include/llvm/Support/
MemoryObject.h 47 /// readBytes - Tries to read a contiguous range of bytes from the
59 virtual int readBytes(uint64_t address, uint64_t size, uint8_t *buf) const;
StringRefMemoryObject.h 36 int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const override;
StreamableMemoryObject.h 27 /// that readByte/readBytes might have to block or do some work to get it.
34 /// Finally, getPointer can be used instead of readBytes to avoid extra copying.
61 /// readBytes - Tries to read a contiguous range of bytes from the
66 /// readBytes will fail.
75 int readBytes(uint64_t address, uint64_t size,
79 /// A pointer to it. More efficient than using readBytes if the
112 int readBytes(uint64_t address, uint64_t size,
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
StringRefMemoryObject.cpp 21 int StringRefMemoryObject::readBytes(uint64_t Addr,
StreamableMemoryObject.cpp 33 int readBytes(uint64_t address, uint64_t size,
66 int RawMemoryObject::readBytes(uint64_t address,
108 int StreamingMemoryObject::readBytes(uint64_t address,
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageWrapper.java 132 String receiverId = new String(readBytes(stream,
136 byte[] payloadLenBytes = readBytes(stream, HEADER_FIELD_PAYLOAD_LENGTH);
139 int protocolVersion = shortBigEndianBytesToInt(readBytes(stream,
142 byte createorId = readBytes(stream, 1)[0];
143 byte[] padding = readBytes(stream, HEADER_FIELD_PADDING_LENGTH);
144 byte[] payload = readBytes(stream, (int)payloadLen);
247 private static byte[] readBytes(InputStream stream, int numBytes)
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 121 mMemoryFile.readBytes(gotData, 0, 0, gotData.length);
143 mMemoryFile.readBytes(data, srcOffset, destOffset, count);
160 mMemoryFile.readBytes(data, 0, 0, 128);
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioRecord.java 164 int readBytes = 0;
166 readBytes = _audioRecord.read(_tempBufRec, 0, lengthInBytes);
167 // DoLog("read " + readBytes + "from SC");
170 if (readBytes != lengthInBytes) {
171 // DoLog("Could not read all data from sc (read = " + readBytes
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 196 int readBytes = 0;
197 while ((readBytes = inputStream.read(sBuffer)) != -1) {
198 content.write(sBuffer, 0, readBytes);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 203 int readBytes = 0;
204 while ((readBytes = inputStream.read(sBuffer)) != -1) {
205 content.write(sBuffer, 0, readBytes);
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 108 b.readBytes(magic);
119 b.readBytes(signature);
163 b.readBytes(values);
DexBuffer.java 71 public void readBytes(byte[] dst) {
  /external/deqp/execserver/tools/
xsClient.cpp 84 void readBytes (de::Socket& socket, vector<deUint8>& dst, int numBytes)
105 readBytes(socket, header, MESSAGE_HEADER_SIZE);
121 readBytes(socket, messageBuf, messageSize-MESSAGE_HEADER_SIZE);
  /external/chromium_org/third_party/angle/src/libGLESv2/
BinaryStream.h 60 void readBytes(unsigned char outArray[], size_t count)
  /external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java 66 public byte[] readBytes(int len) {
300 rec = new DNSRecord.IPv4Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
303 rec = new DNSRecord.IPv6Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
316 rec = new DNSRecord.Text(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
366 optiondata = _messageInputStream.readBytes(optionLength);
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.cpp     [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 246 BitStream->getBitcodeBytes().readBytes(pos, sizeof(buf), buf);
368 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array);
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 701 public static <T> T readBytes(InputSupplier<? extends InputStream> supplier,
733 return readBytes(supplier, new ByteProcessor<Long>() {
761 return readBytes(supplier, new ByteProcessor<byte[]>() {
Files.java 557 public static <T> T readBytes(File file, ByteProcessor<T> processor)
559 return ByteStreams.readBytes(newInputStreamSupplier(file), processor);
  /external/okhttp/okio/src/main/java/okio/
OkBuffer.java 277 return new ByteString(readBytes(byteCount));
289 // If the string spans multiple segments, delegate to readBytes().
290 return new String(readBytes(byteCount), Util.UTF_8);
336 private byte[] readBytes(long byteCount) {
  /external/aac/libAACdec/src/
aacdecoder.cpp 292 int readBytes = 0;
314 readBytes++;
323 readBytes = ancBytes - readBytes;
325 if (readBytes > 0) {
327 FDKpushFor(hBs, readBytes<<3);
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 82 readBytes(magic);
439 void readBytes(byte[] buffer) throws IOException {
  /external/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 298 if (Region.readBytes(Address, 2, Bytes) == -1)
315 if (Size > 2 && Region.readBytes(Address + 2, Size - 2, Bytes + 2) == -1)
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 181 byteBuf.readBytes(buffer, 0, Math.min(buffer.length, toRead));

Completed in 487 milliseconds

1 2