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

1234567891011>>

/frameworks/base/obex/javax/obex/
H A DObexPacket.java35 * @param is the input stream to read from.
36 * @return the OBEX packet read.
37 * @throws IOException if an IO exception occurs during read.
39 public static ObexPacket read(InputStream is) throws IOException { method in class:ObexPacket
40 int headerId = is.read();
41 return read(headerId, is);
46 * @param headerId the headerId already read from the stream.
47 * @param is the stream to read from, assuming 1 byte have already been read.
48 * @return the OBEX packet read
51 public static ObexPacket read(int headerId, InputStream is) throws IOException { method in class:ObexPacket
[all...]
/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/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp50 int read = klogctl(/* SYSLOG_ACTION_READ_ALL */ 3, buf, size); local
51 if (read < 0) {
52 ALOGD("can't read logs - %d", read);
56 ALOGV("read %d bytes", read);
59 if (read != size) {
60 ALOGV("read %d bytes, expecting %d", read, size);
63 JNIObject<jbyteArray> result = helper.newByteArray(read);
[all...]
/frameworks/data-binding/extensions/library/src/androidTest/java/android/databinding/
H A DObservableParcelTest.java36 ObservableInt read = parcelAndUnparcel(observableInt, ObservableInt.class);
37 assertEquals(Integer.MAX_VALUE - 1, read.get());
42 ObservableBoolean read = parcelAndUnparcel(obj, ObservableBoolean.class);
43 assertFalse(read.get());
52 ObservableByte read = parcelAndUnparcel(obj, ObservableByte.class);
53 assertEquals((byte) 7, read.get());
58 ObservableChar read = parcelAndUnparcel(obj, ObservableChar.class);
59 assertEquals('y', read.get());
64 ObservableDouble read = parcelAndUnparcel(obj, ObservableDouble.class);
65 assertEquals(Double.MAX_VALUE, read
[all...]
/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/base/core/java/android/service/persistentdata/
H A DIPersistentDataBlockService.aidl31 byte[] read();
/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/core/java/com/android/internal/util/
H A DSizedInputStream.java26 * bytes have been read.
44 public int read() throws IOException { method in class:SizedInputStream
49 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { method in class:SizedInputStream
56 final int n = mWrapped.read(buffer, byteOffset, byteCount);
/frameworks/base/media/java/android/media/
H A DResampleInputStream.java49 // helper for bytewise read()
71 public int read() throws IOException { method in class:ResampleInputStream
72 int rtn = read(mOneByte, 0, 1);
77 public int read(byte[] b) throws IOException { method in class:ResampleInputStream
78 return read(b, 0, b.length);
82 public int read(byte[] b, int offset, int length) throws IOException { method in class:ResampleInputStream
95 // read until we have enough data for at least one output sample
103 int n = mInputStream.read(mBuf, mBufCount, mBuf.length - mBufCount);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DByteBufferInputStream.java31 public int read() { method in class:ByteBufferInputStream
39 public int read(byte[] bytes, int off, int len) { method in class:ByteBufferInputStream
H A DCountedDataInputStream.java44 public int read(byte[] b) throws IOException { method in class:CountedDataInputStream
45 int r = in.read(b);
51 public int read(byte[] b, int off, int len) throws IOException { method in class:CountedDataInputStream
52 int r = in.read(b, off, len);
58 public int read() throws IOException { method in class:CountedDataInputStream
59 int r = in.read();
83 int r = read(b, off, len);
/frameworks/av/media/mtp/
H A DMtpResponsePacket.h39 // read our buffer with the given request
40 int read(struct usb_request *request);
H A DMtpRequestPacket.cpp40 int MtpRequestPacket::read(IMtpHandle *h) { function in class:android::MtpRequestPacket
41 int ret = h->read(mBuffer, mBufferSize);
43 // file read error
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipUtilTest.java75 int read = raf.read(dirData, off, length);
79 length -= read;
80 off += read;
122 int read = in.read(buffer);
123 while (read != -1) {
124 out.write(buffer, 0, read);
125 read = in.read(buffe
[all...]
/frameworks/ex/framesequence/jni/
H A DStream.cpp28 jmethodID read; member in struct:__anon1466
51 size_t read = doRead(mPeekBuffer + mPeekOffset, size - peek_remaining); local
53 mPeekSize = peek_remaining + read;
60 size_t Stream::read(void* buffer, size_t size) { function in class:Stream
129 gInputStreamClassInfo.read, mByteArray, 0, requested);
150 gInputStreamClassInfo.read = env->GetMethodID(inputStreamClazz, "read", "([BII)I");
152 if (!gInputStreamClassInfo.read || !gInputStreamClassInfo.reset) {
/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/base/telephony/java/com/android/internal/telephony/
H A DSmsHeader.java132 int id = inStream.read();
133 int length = inStream.read();
139 concatRef.refNumber = inStream.read();
140 concatRef.msgCount = inStream.read();
141 concatRef.seqNumber = inStream.read();
150 concatRef.refNumber = (inStream.read() << 8) | inStream.read();
151 concatRef.msgCount = inStream.read();
152 concatRef.seqNumber = inStream.read();
161 portAddrs.destPort = inStream.read();
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp96 config(config), read(0), draw(0), cnx(cnx), version(version) {
100 read = NULL;
104 void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) { argument
105 this->read = read;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DParserFactory.java113 // get the size to read.
117 // create the initial buffer and read it.
119 int read = stream.read(buffer);
122 if (read == intSize) {
126 // check if there is more to read (read() does not necessarily read all that
129 if (read + avail > buffer.length) {
132 byte[] moreBuffer = new byte[read
[all...]
/frameworks/native/libs/gui/
H A DLayerState.cpp52 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
71 input.read(crop);
72 input.read(finalCrop);
80 input.read(transparentRegion);
89 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
91 return state.read(input);
118 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState
124 input.read(viewport);
125 input.read(frame);
/frameworks/native/services/vr/hardware_composer/impl/
H A Dvr_composer_client.cpp67 auto err = mVrHal.setLayerInfo(mDisplay, mLayer, read(), read());
103 .width = read(),
104 .height = read(),
105 .stride = read(),
106 .layerCount = read(),
/frameworks/av/media/libnbaio/
H A DMonoPipeReader.cpp46 ssize_t MonoPipeReader::read(void *buffer, size_t count) function in class:android::MonoPipeReader
49 ssize_t actual = mFifoReader.read(buffer, count);
/frameworks/av/include/media/nbaio/
H A DLibsndfileSource.h46 virtual ssize_t read(void *buffer, size_t count);

Completed in 860 milliseconds

1234567891011>>