Searched defs:read (Results 1 - 25 of 127) sorted by relevance

123456

/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/native/libs/gui/
H A DLayerState.cpp45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
64 input.read(crop);
65 input.read(transparentRegion);
74 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
76 return state.read(input);
93 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState
99 input.read(viewport);
100 input.read(frame);
/frameworks/av/media/mtp/
H A DMtpDeviceInfo.cpp62 bool MtpDeviceInfo::read(MtpDataPacket& packet) { function in class:android::MtpDeviceInfo
65 // read the device info
H A DMtpRequestPacket.cpp39 int MtpRequestPacket::read(int fd) { function in class:android::MtpRequestPacket
40 int ret = ::read(fd, mBuffer, mBufferSize);
42 // file read error
H A DMtpResponsePacket.cpp47 int MtpResponsePacket::read(struct usb_request *request) { function in class:android::MtpResponsePacket
H A DMtpStorageInfo.cpp48 bool MtpStorageInfo::read(MtpDataPacket& packet) { function in class:android::MtpStorageInfo
51 // read the device info
H A DMtpEventPacket.cpp57 int MtpEventPacket::read(struct usb_request *request) { function in class:android::MtpEventPacket
H A DMtpObjectInfo.cpp58 bool MtpObjectInfo::read(MtpDataPacket& packet) { function in class:android::MtpObjectInfo
/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/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurable.java25 public void read(DataInputStream in) throws IOException; method in interface:Durable
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifReader.java44 protected ExifData read(InputStream inputStream) throws ExifInvalidFormatException, method in class:ExifReader
73 if (buf.length == parser.read(buf)) {
76 Log.w(TAG, "Failed to read the compressed thumbnail");
81 if (buf.length == parser.read(buf)) {
84 Log.w(TAG, "Failed to read the strip bytes");
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
/frameworks/av/media/img_utils/src/
H A DFileInput.cpp48 ssize_t FileInput::read(uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::FileInput
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
/frameworks/av/media/libnbaio/
H A DLibsndfileSource.cpp46 ssize_t LibsndfileSource::read(void *buffer, size_t count) function in class:android::LibsndfileSource
55 // Detect EOF by zero frames read, not by mFramesUntilEOF as it could be inaccurate
62 // We didn't read any frames during the current loop cycle, so disable
63 // further looping to prevent the caller from busy waiting at read().
H A DMonoPipeReader.cpp46 ssize_t MonoPipeReader::read(void *buffer, size_t count, int64_t readPTS) function in class:android::MonoPipeReader
48 // Compute the "next read PTS" and cache it. Callers of read pass a read
62 // Uh-oh, looks like we are underflowing. Update the next read PTS and
H A DPipeReader.cpp49 // read() is not multi-thread safe w.r.t. itself, so no mutex or atomic op needed to read mFront
62 ssize_t PipeReader::read(void *buffer, size_t count, int64_t readPTS __unused) function in class:android::PipeReader
69 // but it will be caught at next read()
80 // We could re-read the rear pointer here to detect the corruption, but why bother?
/frameworks/av/media/libstagefright/
H A DMediaAdapter.cpp57 // While read() is still waiting, we should signal it to finish.
77 status_t MediaAdapter::read( function in class:android::MediaAdapter
86 ALOGV("waiting @ read()");
91 ALOGV("read interrupted after stop");
/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/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 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);
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);
/frameworks/base/core/java/com/android/internal/util/
H A DBitwiseInputStream.java20 * An object that provides bitwise incremental read access to a byte array.
29 // The byte array being read from.
71 * @param bits the amount of data to read (gte 0, lte 8)
72 * @return byte of read data (possibly partially filled, from lsb)
74 public int read(int bits) throws AccessException { method in class:BitwiseInputStream
78 throw new AccessException("illegal read " +
92 * @param bits the amount of data to read
93 * @return newly allocated byte array of read data
100 arr[i] = (byte)(read(increment) << (8 - increment));
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/av/cmds/stagefright/
H A DSineSource.cpp60 status_t SineSource::read( function in class:android::SineSource
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp95 ssize_t NuPlayer::NuPlayerStreamListener::read( function in class:android::NuPlayer::NuPlayerStreamListener

Completed in 590 milliseconds

123456