HomeSort by relevance Sort by last modified time
    Searched defs:readBytes (Results 1 - 25 of 346) 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 {
  /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,
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.cpp 105 void CParameterBlackboard::readBytes(std::vector<uint8_t> &bytes, size_t offset) const
  /frameworks/base/obex/javax/obex/
PrivateOutputStream.java 127 public synchronized byte[] readBytes(int size) {
  /libcore/tzdata/shared2/src/main/libcore/tzdata/shared2/
FileUtils.java 165 public static byte[] readBytes(File file, int maxBytes) throws IOException {
  /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);
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 71 public void readBytes(byte[] dst) {
  /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));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
LazyFieldLite.java 321 setByteString(input.readBytes(), extensionRegistry);
337 setByteString(this.delayedBytes.concat(input.readBytes()), this.extensionRegistry);
  /external/sonic/
wave.c 86 static int readBytes(
338 bytesRead = readBytes(file, bytes, maxSamples*file->numChannels*2);
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 126 int readBytes = 0;
127 readBytes = fread(dest, 1, readSize, infile);
128 return readBytes;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtypeArray.java 219 final int readBytes = unzipper.read(result, totalReadBytes, restBytes);
220 if (readBytes < 0) {
223 totalReadBytes += readBytes;
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 38 /* package */ static byte[] readBytes(String path) throws IOException {
40 return readBytes(file);
44 /* package */ static byte[] readBytes(File file) throws IOException {
  /libcore/ojluni/src/main/java/java/sql/
SQLInput.java 34 * (<code>readLong</code>, <code>readBytes</code>, and so on)
183 byte[] readBytes() throws SQLException;
  /external/deqp/execserver/tools/
xsClient.cpp 85 void readBytes (de::Socket& socket, vector<deUint8>& dst, size_t numBytes)
106 readBytes(socket, header, MESSAGE_HEADER_SIZE);
122 readBytes(socket, messageBuf, messageSize-MESSAGE_HEADER_SIZE);

Completed in 5463 milliseconds

1 2 3 4 5 6 7 8 91011>>