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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
  /external/llvm/lib/DebugInfo/CodeView/
ByteStream.cpp 36 Error ByteStream<Writable>::readBytes(uint32_t Offset, uint32_t Size,
StreamReader.cpp 27 Error StreamReader::readBytes(ArrayRef<uint8_t> &Buffer, uint32_t Size) {
28 if (auto EC = Stream.readBytes(Offset, Size, Buffer))
66 if (auto EC = readBytes(Data, Length))
77 if (auto EC = readBytes(Bytes, Length))
  /external/abi-compliance-checker/modules/Internals/
SysCheck.pm     [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamRef.h 30 Error readBytes(uint32_t Offset, uint32_t Size,
36 return Stream->readBytes(ViewOffset + Offset, Size, Buffer);
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 28 uint64_t readBytes(uint8_t *Buf, uint64_t Size,
49 uint64_t RawMemoryObject::readBytes(uint8_t *Buf, uint64_t Size,
87 uint64_t StreamingMemoryObject::readBytes(uint8_t *Buf, uint64_t Size,
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
IoUtil.java 38 public static byte[] readBytes(InputStream input) throws IOException {
  /external/swiftshader/third_party/subzero/pnacl-llvm/
StreamingMemoryObject.cpp 28 uint64_t readBytes(uint8_t *Buf, uint64_t Size,
49 uint64_t RawMemoryObject::readBytes(uint8_t *Buf, uint64_t Size,
87 uint64_t StreamingMemoryObject::readBytes(uint8_t *Buf, uint64_t Size,
  /frameworks/av/drm/common/
ReadWriteUtils.cpp 35 String8 ReadWriteUtils::readBytes(const String8& filePath) {
57 int ReadWriteUtils::readBytes(const String8& filePath, char** buffer) {
  /libcore/ojluni/src/main/native/
io_util.c 77 readBytes(JNIEnv *env, jobject this, jbyteArray bytes,
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 68 int readBytes = getReadBytes();
69 if (readBytes != bytes.length) {
70 parsed(ba, readBytes, bytes.length - readBytes, "<extra data at end of file>");
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 105 void CParameterBlackboard::readBytes(std::vector<uint8_t> &bytes, size_t offset) const
  /external/brotli/java/org/brotli/wrapper/common/
BrotliCommon.java 96 int readBytes;
97 while ((readBytes = src.read(buffer)) != -1) {
98 if (copy.remaining() < readBytes) {
101 copy.put(buffer, 0, readBytes);
SetRfcDictionaryTest.java 42 int readBytes;
43 while ((readBytes = dictionary.read(data, offset, data.length - offset)) != -1) {
44 offset += readBytes;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
TargetLoader.java 61 return readBytes(getClassData(loader, name));
65 return readBytes(getClassData(clazz));
68 private static byte[] readBytes(InputStream in) throws IOException {
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Util.java 36 public static byte[] readBytes(InputStream is) throws IOException {
  /frameworks/base/obex/javax/obex/
PrivateOutputStream.java 127 public synchronized byte[] readBytes(int size) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 107 Error readBytes(uint32_t Offset, uint32_t Size,
112 return Stream->readBytes(ViewOffset + Offset, Size, Buffer);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 107 Error readBytes(uint32_t Offset, uint32_t Size,
112 return Stream->readBytes(ViewOffset + Offset, Size, Buffer);
  /system/timezone/distro/core/src/main/com/android/timezone/distro/
FileUtils.java 165 public static byte[] readBytes(File file, int maxBytes) throws IOException {
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 118 mMemoryFile.readBytes(gotData, 0, 0, gotData.length);
140 mMemoryFile.readBytes(data, srcOffset, destOffset, count);
157 mMemoryFile.readBytes(data, 0, 0, 128);
  /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);
  /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)
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 180 byteBuf.readBytes(buffer, 0, Math.min(buffer.length, toRead));

Completed in 346 milliseconds

1 2 3 4 5 6 7 8 91011>>