Searched defs:read (Results 26 - 50 of 133) sorted by relevance

123456

/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionProgBits.hxx33 ELFSectionProgBits<Bitwidth>::read(Archiver &AR, function in class:ELFSectionProgBits
81 // Unable to read the progbits section.
H A DELFSectionRelTable.hxx55 ELFSectionRelTable<Bitwidth>::read(Archiver &AR, function in class:ELFSectionRelTable
83 // Unable to read the table.
H A DELFSectionSymTab.hxx88 ELFSectionSymTab<Bitwidth>::read(Archiver &AR, function in class:ELFSectionSymTab
103 st->table.push_back(ELFSymbolTy::read(AR, owner, i));
107 // Unable to read the table.
H A DELFSymbol.hxx45 ELFSymbol_CRTP<Bitwidth>::read(Archiver &AR, function in class:ELFSymbol_CRTP
49 // Archiver is in bad state before calling read function.
57 // Unable to read the structure. Return NULL.
62 // SymTabEntry read from archiver is not valid. Return NULL.
/frameworks/av/cmds/stagefright/
H A DSineSource.cpp60 status_t SineSource::read( function in class:android::SineSource
/frameworks/av/media/libmedia/
H A DSoundPoolThread.cpp38 const SoundPoolMsg SoundPoolThread::read() { function in class:android::SoundPoolThread
84 SoundPoolMsg msg = read();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp95 ssize_t NuPlayer::NuPlayerStreamListener::read( function in class:android::NuPlayer::NuPlayerStreamListener
/frameworks/av/media/libnbaio/
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?
H A DAudioBufferProviderSource.cpp49 ssize_t AudioBufferProviderSource::read(void *buffer, function in class:android::AudioBufferProviderSource
H A DAudioStreamInSource.cpp67 ssize_t AudioStreamInSource::read(void *buffer, size_t count, int64_t readPTS __unused) function in class:android::AudioStreamInSource
72 ssize_t bytesRead = mStream->read(mStream, buffer, count * mFrameSize);
/frameworks/base/core/java/android/service/persistentdata/
H A DPersistentDataBlockManager.java36 * Clients can read the currently written block by invoking
37 * {@link PersistentDataBlockManager#read()}.
71 public byte[] read() { method in class:PersistentDataBlockManager
73 return sService.read();
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java54 * Creates an input stream for the <code>Operation</code> to read from
65 * Returns the number of bytes that can be read (or skipped over) from this
69 * @return the number of bytes that can be read from this input stream
85 * @return the byte read from the input stream or -1 if it reaches the end of
90 public synchronized int read() throws IOException { method in class:PrivateInputStream
101 public int read(byte[] b) throws IOException { method in class:PrivateInputStream
102 return read(b, 0, b.length);
106 public synchronized int read(byte[] b, int offset, int length) throws IOException { method in class:PrivateInputStream
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentStack.java100 public void read(DataInputStream in) throws IOException { method in class:DocumentStack
108 root.read(in);
113 doc.read(in);
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsXml.java53 public static void read(AtomicFile file, IntervalStats statsOut) throws IOException { method in class:UsageStatsXml
58 read(in, statsOut);
85 private static void read(InputStream in, IntervalStats statsOut) throws IOException { method in class:UsageStatsXml
94 UsageStatsXmlV1.read(parser, statsOut);
/frameworks/av/media/libstagefright/
H A DSkipCutBuffer.cpp64 size_t copied = read(dst, buffer->size());
91 size_t copied = read(dst, buffer->capacity());
134 size_t SkipCutBuffer::read(char *dst, size_t num) { function in class:android::SkipCutBuffer
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h57 virtual status_t read( function in class:android::VideoSource
64 // printf("VideoSource::read\n");
78 // printf("VideoSource::read - returning buffer\n");
79 // LOG(INFO)("VideoSource::read - returning buffer");
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp41 status_t TimedText3GPPSource::read( function in class:android::TimedText3GPPSource
45 status_t err = mSource->read(&textBuffer, options);
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java84 * @param buffer to read into
85 * @return number of bytes read
87 public int read(ByteBuffer buffer) throws IOException { method in class:SerialPort
/frameworks/base/core/java/android/speech/srec/
H A DMicrophoneInputStream.java57 public int read() throws IOException { method in class:MicrophoneInputStream
64 public int read(byte[] b) throws IOException { method in class:MicrophoneInputStream
70 public int read(byte[] b, int offset, int length) throws IOException { method in class:MicrophoneInputStream
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);
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java24 * An InputStream that does Base64 decoding on the data read through
39 * An InputStream that performs Base64 decoding on the data read
42 * @param in the InputStream to read the source data from
51 * Performs Base64 encoding or decoding on the data read from the
54 * @param in the InputStream to read the source data from
108 public int read() throws IOException { method in class:Base64InputStream
119 public int read(byte[] b, int off, int len) throws IOException { method in class:Base64InputStream
139 int bytesRead = in.read(inputBuffer);
/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp61 size_t AssetStreamAdaptor::read(void* buffer, size_t size) { function in class:AssetStreamAdaptor
83 amount = fAsset->read(buffer, size);
85 SkDebugf("---- fAsset->read(%d) returned %d\n", size, amount);
114 off64_t len = asset->read(data, size);
116 SkDebugf("---- copyAsset: asset->read(%d) returned %d\n", size, len);
/frameworks/base/libs/androidfw/
H A DStreamingZipInflater.cpp114 mInflateState.avail_in = 0; // set when a chunk is read in
129 * a. if there is no input data to decode, read some into the input buffer
134 ssize_t StreamingZipInflater::read(void* outBuf, size_t count) { function in class:StreamingZipInflater
152 // if we don't have any data to decode, read some in. If we're working
192 // not try to read any further, so just wind things up.
211 ssize_t didRead = TEMP_FAILURE_RETRY(::read(mFd, mInBuf, toRead));
236 read(NULL, absoluteInputPosition);
238 read(NULL, absoluteInputPosition - mOutCurPosition);
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java49 // helper for bytewise read()
63 public int read() throws IOException { method in class:AmrInputStream
64 int rtn = read(mOneByte, 0, 1);
69 public int read(byte[] b) throws IOException { method in class:AmrInputStream
70 return read(b, 0, b.length);
74 public int read(byte[] b, int offset, int length) throws IOException { method in class:AmrInputStream
85 int n = mInputStream.read(mBuf, i, SAMPLES_PER_FRAME * 2 - i);

Completed in 4213 milliseconds

123456