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

1234567891011>>

/frameworks/compile/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/native/libs/gui/
H A DLayerState.cpp45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
52 err = transparentRegion.read(buf);
58 input.read(this, size);
67 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
69 return state.read(input);
H A DSensor.cpp157 size_t read(void const* buffer, size_t offset, String8* value, int32_t len) { function in namespace:android
163 size_t read(void const* buffer, size_t offset, float* value) { function in namespace:android
169 size_t read(void const* buffer, size_t offset, int32_t* value) { function in namespace:android
179 offset += read(buffer, offset, &len);
180 offset += read(buffer, offset, &mName, len);
181 offset += read(buffer, offset, &len);
182 offset += read(buffer, offset, &mVendor, len);
183 offset += read(buffer, offset, &mVersion);
184 offset += read(buffer, offset, &mHandle);
185 offset += read(buffe
[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);
H A DMtpDeviceInfo.h47 void read(MtpDataPacket& packet);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSmsHeader.java127 int id = inStream.read();
128 int length = inStream.read();
134 concatRef.refNumber = inStream.read();
135 concatRef.msgCount = inStream.read();
136 concatRef.seqNumber = inStream.read();
145 concatRef.refNumber = (inStream.read() << 8) | inStream.read();
146 concatRef.msgCount = inStream.read();
147 concatRef.seqNumber = inStream.read();
156 portAddrs.destPort = inStream.read();
[all...]
/frameworks/av/services/audioflinger/
H A DMonoPipeReader.h50 virtual ssize_t read(void *buffer, size_t count);
/frameworks/compile/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.cpp92 config(config), read(0), draw(0), cnx(cnx), version(version) {
96 read = NULL;
100 void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) { argument
101 this->read = read;
/frameworks/base/core/java/android/speech/srec/
H A DUlawEncoderInputStream.java141 public int read(byte[] buf, int offset, int length) throws IOException { method in class:UlawEncoderInputStream
146 int n = mIn.read(mBuf, mBufCount, Math.min(length * 2, mBuf.length - mBufCount));
163 public int read(byte[] buf) throws IOException { method in class:UlawEncoderInputStream
164 return read(buf, 0, buf.length);
168 public int read() throws IOException { method in class:UlawEncoderInputStream
169 int n = read(mOneByte, 0, 1);
H A DWaveHeader.java177 * @param in {@link java.io.InputStream} to read from.
181 public int read(InputStream in) throws IOException { method in class:WaveHeader
212 if (id.charAt(i) != in.read()) throw new IOException( id + " tag not present");
217 return in.read() | (in.read() << 8) | (in.read() << 16) | (in.read() << 24);
221 return (short)(in.read() | (in.read() << 8));
/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp31 size_t AssetStreamAdaptor::read(void* buffer, size_t size) { function in class:AssetStreamAdaptor
53 amount = fAsset->read(buffer, size);
55 SkDebugf("---- fAsset->read(%d) returned %d\n", size, amount);

Completed in 2940 milliseconds

1234567891011>>