Searched refs:read (Results 51 - 75 of 423) sorted by relevance

1234567891011>>

/frameworks/av/cmds/stagefright/
H A DSineSource.h19 virtual status_t read(
/frameworks/av/include/media/nbaio/
H A DAudioBufferProviderSource.h45 virtual ssize_t read(void *buffer, size_t count, int64_t readPTS);
H A DPipeReader.h48 virtual ssize_t read(void *buffer, size_t count, int64_t readPTS);
H A DAudioStreamInSource.h44 // This is an over-estimate, and could dupe the caller into making a blocking read()
48 virtual ssize_t read(void *buffer, size_t count);
/frameworks/av/media/mtp/
H A DMtpResponsePacket.cpp47 int MtpResponsePacket::read(struct usb_request *request) { function in class:android::MtpResponsePacket
H A DMtpEventPacket.cpp57 int MtpEventPacket::read(struct usb_request *request) { function in class:android::MtpEventPacket
/frameworks/base/cmds/bugreport/
H A Dbugreport.c48 int length = read(s, buffer, sizeof(buffer));
/frameworks/base/core/jni/android/graphics/
H A DUtils.h33 virtual size_t read(void* buffer, size_t size);
/frameworks/compile/linkloader/include/
H A DELFSectionRelTable.h43 static ELFSectionRelTable *read(Archiver &AR, ELFSectionHeaderTy const *sh);
/frameworks/rs/
H A DrsFifoSocket.h39 size_t read(void *data, size_t bytes);
/frameworks/support/renderscript/v8/rs_support/
H A DrsFifoSocket.h39 size_t read(void *data, size_t bytes);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPrefs.java32 public static SharedPreferences read(Context context) { method in class:Prefs
/frameworks/base/obex/javax/obex/
H A DClientSession.java435 header.responseCode = mInput.read();
437 int length = ((mInput.read() << 8) | (mInput.read()));
446 int version = mInput.read();
448 int flags = mInput.read();
449 maxPacketSize = (mInput.read() << 8) + mInput.read();
459 bytesReceived = mInput.read(data);
461 bytesReceived += mInput.read(data, bytesReceived, data.length
469 bytesReceived = mInput.read(dat
[all...]
/frameworks/av/media/libmedia/
H A DICrypto.cpp146 reply.read(dstPtr, result);
175 data.read(uuid, sizeof(uuid));
186 data.read(uuid, sizeof(uuid));
193 data.read(opaqueData, opaqueSize);
232 data.read(key, sizeof(key));
235 data.read(iv, sizeof(iv));
239 data.read(srcData, totalSize);
246 data.read(
H A DSoundPoolThread.h55 const SoundPoolMsg read();
/frameworks/av/media/libnbaio/
H A DAudioStreamInSource.cpp68 ssize_t AudioStreamInSource::read(void *buffer, size_t count) function in class:android::AudioStreamInSource
73 ssize_t bytesRead = mStream->read(mStream, buffer, count << mBitShift);
/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));
/frameworks/base/core/java/android/os/
H A DFileUtils.java109 while ((bytesRead = inputStream.read(buffer)) >= 0) {
139 * @param file to read (will not seek, so things like /proc files are OK)
148 // input stream, bytes read not equal to buffer size is not necessarily the correct
153 if (max > 0 || (size > 0 && max == 0)) { // "head" mode: read the first N bytes
156 int length = bis.read(data);
169 len = bis.read(data);
181 } else { // "cat" mode: size unknown, read it all in streaming fashion
186 len = bis.read(data);
227 while(cis.read(buf) >= 0) {
228 // Just read fo
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DBitwiseStreamsTest.java44 for (int i = 0; i < inBufDup.length; i++) inBufDup[i] = (byte)inStream.read(8);
58 for (int i = 0; i < inBufDup.length; i++) inBufDup[i] = (byte)inStream.read(8);
72 for (int i = 0; i < inBufDup.length; i++) inBufDup[i] = (byte)inStream.read(8);
89 for (int i = 0; i < inBufDup.length; i++) inBufDup[i] = (byte)inStream.read(8);
110 assertEquals(valueArr[i], inStream.read(sizeArr[i]));
130 for (int i = 0; i < inBufDup.length; i++) inBufDup[i] = (byte)inStream.read(8);
154 assertEquals(valueArr[i], inStream.read(sizeArr[i]));
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java431 * Utility method to read a line of data from the input stream
432 * @param is Inputstream to read
433 * @return number of bytes read
437 int read = 0;
443 int data = is.read();
450 buf[read] = (byte)data;
455 if (buf[read++]==(byte)'\n') {
457 return read;
464 return read;
469 * @param is Stream from which to read dat
[all...]
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h35 virtual status_t read(
H A DSkipCutBuffer.h49 size_t read(char *dst, size_t num);
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.h41 virtual status_t read(
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.h40 ssize_t read(void *data, size_t size, sp<AMessage> *extra);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.h35 virtual status_t read(

Completed in 347 milliseconds

1234567891011>>