Searched refs:read (Results 1 - 25 of 431) sorted by relevance

1234567891011>>

/frameworks/rs/driver/linkloader/include/impl/
H A DELFSection.hxx34 ELFSection<Bitwidth>::read(Archiver &AR, function in class:ELFSection
46 return ELFSectionStrTabTy::read(AR, sh);
49 return ELFSectionSymTabTy::read(AR, owner, sh);
52 return ELFSectionProgBitsTy::read(AR, owner, sh);
55 return ELFSectionNoBitsTy::read(AR, sh);
59 return ELFSectionRelTableTy::read(AR, sh);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothInputStream.java50 * reached. Blocks until one byte has been read, the end of the source
53 * @return the byte read or -1 if the end of stream has been reached.
58 public int read() throws IOException { method in class:BluetoothInputStream
60 int ret = mSocket.read(b, 0, 1);
73 * the byte array in which to store the bytes read.
76 * read from this stream.
79 * @return the number of bytes actually read or -1 if the end of the stream
89 public int read(byte[] b, int offset, int length) throws IOException { method in class:BluetoothInputStream
96 return mSocket.read(b, offset, length);
/frameworks/base/core/java/android/content/pm/
H A DMacAuthenticatedInputStream.java62 public int read() throws IOException { method in class:MacAuthenticatedInputStream
63 final int b = super.read();
71 public int read(byte[] buffer, int offset, int count) throws IOException { method in class:MacAuthenticatedInputStream
72 int numRead = super.read(buffer, offset, count);
H A DLimitedLengthInputStream.java9 * A class that limits the amount of data that is read from an InputStream. When
17 * The end of the stream where we don't want to allow more data to be read.
58 public synchronized int read() throws IOException { method in class:LimitedLengthInputStream
64 return super.read();
68 public int read(byte[] buffer, int offset, int byteCount) throws IOException { method in class:LimitedLengthInputStream
84 final int numRead = super.read(buffer, offset, byteCount);
91 public int read(byte[] buffer) throws IOException { method in class:LimitedLengthInputStream
92 return read(buffer, 0, buffer.length);
/frameworks/base/core/tests/coretests/src/android/net/
H A DLocalSocketTest.java46 // Test trivial read and write
49 assertEquals(42, ls1.getInputStream().read());
62 assertEquals(42, ls1.getInputStream().read());
71 assertEquals(1, ls.getInputStream().read());
77 countRead = ls.getInputStream().read(buffer, 1, 15);
87 ls.getInputStream().read(buffer, 1, 16);
115 ls.getInputStream().read(buffer, -1, 15);
122 ls.getInputStream().read(buffer, 0, -1);
128 // Try read of length 0
130 countRead = ls1.getInputStream().read(buffe
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DInputFile.cpp26 ssize_t InputFile::read(void *pBuf, size_t count) { function in class:InputFile
33 ALOGW("InputFile::read: count = %zu, buffer = %p", count, pBuf);
38 ssize_t read_size = ::read(mFD, pBuf, count);
43 // If the errno is EAGAIN or EINTR, then we try to read again.
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DParserFactory.java89 // get the size to read.
93 // create the initial buffer and read it.
95 int read = stream.read(buffer);
98 if (read == intSize) {
102 // check if there is more to read (read() does not necessarily read all that
105 if (read + avail > buffer.length) {
108 byte[] moreBuffer = new byte[read
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupDataInputStream.java28 * is called, the current entity's header has already been read from the underlying
33 * source, nor read more than {@link #size()} bytes from the stream.</p>
54 * are read from the stream, the output of this method is undefined.
56 * @return The byte read, or undefined if the end of the stream has been reached.
58 public int read() throws IOException { method in class:BackupDataInputStream
71 * @param b Byte array into which the data will be read
74 * @param size The number of bytes to read in this operation. If insufficient
76 * will be read as is available.
77 * @return The number of bytes of data read, or zero if all of the entity's
78 * data has already been read
80 public int read(byte[] b, int offset, int size) throws IOException { method in class:BackupDataInputStream
93 public int read(byte[] b) throws IOException { method in class:BackupDataInputStream
[all...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DAdbUtils.java68 int read = inputStream.read(buf);
69 if (read != ADB_RESPONSE_SIZE || !ADB_OK.equals(new String(buf))) {
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java51 // helper for bytewise read()
65 public int read() throws IOException { method in class:AmrInputStream
66 int rtn = read(mOneByte, 0, 1);
71 public int read(byte[] b) throws IOException { method in class:AmrInputStream
72 return read(b, 0, b.length);
76 public int read(byte[] b, int offset, int length) throws IOException { method in class:AmrInputStream
87 int n = mInputStream.read(mBuf, i, SAMPLES_PER_FRAME * 2 - i);
H A DResampleInputStream.java51 // helper for bytewise read()
73 public int read() throws IOException { method in class:ResampleInputStream
74 int rtn = read(mOneByte, 0, 1);
79 public int read(byte[] b) throws IOException { method in class:ResampleInputStream
80 return read(b, 0, b.length);
84 public int read(byte[] b, int offset, int length) throws IOException { method in class:ResampleInputStream
97 // read until we have enough data for at least one output sample
105 int n = mInputStream.read(mBuf, mBufCount, mBuf.length - mBufCount);
/frameworks/av/media/mtp/
H A DMtpRequestPacket.cpp38 int MtpRequestPacket::read(int fd) { function in class:android::MtpRequestPacket
39 int ret = ::read(fd, mBuffer, mBufferSize);
H A DMtpEventPacket.h37 // read our buffer with the given request
38 int read(struct usb_request *request);
H A DMtpRequestPacket.h35 int read(int fd);
H A DMtpResponsePacket.h37 // read our buffer with the given request
38 int read(struct usb_request *request);
/frameworks/native/libs/gui/
H A DLayerState.cpp45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
60 input.read(crop);
61 input.read(transparentRegion);
70 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
72 return state.read(input);
87 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState
93 input.read(viewport);
94 input.read(frame);
H A DSensor.cpp147 size_t read(void const* buffer, size_t offset, String8* value, int32_t len) { function in namespace:android
153 size_t read(void const* buffer, size_t offset, float* value) { function in namespace:android
159 size_t read(void const* buffer, size_t offset, int32_t* value) { function in namespace:android
168 offset += read(buffer, offset, &len);
169 offset += read(buffer, offset, &mName, len);
170 offset += read(buffer, offset, &len);
171 offset += read(buffer, offset, &mVendor, len);
172 offset += read(buffer, offset, &mVersion);
173 offset += read(buffer, offset, &mHandle);
174 offset += read(buffe
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsHeader.java126 int id = inStream.read();
127 int length = inStream.read();
133 concatRef.refNumber = inStream.read();
134 concatRef.msgCount = inStream.read();
135 concatRef.seqNumber = inStream.read();
144 concatRef.refNumber = (inStream.read() << 8) | inStream.read();
145 concatRef.msgCount = inStream.read();
146 concatRef.seqNumber = inStream.read();
155 portAddrs.destPort = inStream.read();
[all...]
/frameworks/av/include/media/nbaio/
H A DMonoPipeReader.h50 virtual ssize_t read(void *buffer, size_t count, int64_t readPTS);
/frameworks/compile/libbcc/include/bcc/Support/
H A DInputFile.h30 ssize_t read(void *pBuf, size_t count);
/frameworks/rs/driver/linkloader/include/
H A DELFSection.h37 static ELFSection *read(Archiver &AR, ELFObjectTy *,
H A DELFSectionNoBits.h32 static ELFSectionNoBits *read(Archiver &AR, ELFSectionHeaderTy const *sh);
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProviderTest.java42 int count = in.read(buf);
44 assertEquals(-1, in.read());
60 int count = in.read(buf);
75 int count = in.read(buf);
77 assertEquals(-1, in.read());
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp90 config(config), read(0), draw(0), cnx(cnx), version(version) {
94 read = NULL;
98 void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) { argument
99 this->read = read;
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp120 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
126 // read edge cases
127 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
133 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
139 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
145 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
152 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
161 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
165 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
173 err = mSource->read(
[all...]

Completed in 844 milliseconds

1234567891011>>