Searched defs:readAt (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/media/java/android/media/
H A DDataSource.java35 public int readAt(long offset, byte[] buffer, int size); method in interface:DataSource
H A DMediaHTTPConnection.java304 public int readAt(long offset, int size) { method in class:MediaHTTPConnection
308 private int readAt(long offset, byte[] data, int size) { method in class:MediaHTTPConnection
330 Log.d(TAG, "readAt " + offset + " / " + size + " => " + n);
335 Log.w(TAG, "readAt " + offset + " / " + size + " => " + e);
338 Log.w(TAG, "readAt " + offset + " / " + size + " => " + e);
342 Log.d(TAG, "readAt " + offset + " / " + size + " => -1");
348 Log.d(TAG, "readAt " + offset + " / " + size + " => -1");
/frameworks/av/media/libstagefright/
H A DDataURISource.cpp87 ssize_t DataURISource::readAt(off64_t offset, void *data, size_t size) { function in class:android::DataURISource
H A DThrottledSource.cpp34 ssize_t ThrottledSource::readAt(off64_t offset, void *data, size_t size) { function in class:android::ThrottledSource
37 ssize_t n = mSource->readAt(offset, data, size);
H A DFileSource.cpp87 ssize_t FileSource::readAt(off64_t offset, void *data, size_t size) { function in class:android::FileSource
H A DNuCachedSource2.cpp224 // So whenever we call DataSource::readAt it may end up in a call to
225 // IMediaHTTPConnection::readAt and therefore call back into JAVA.
258 // explicitly signal mCondition so that the pending readAt()
351 ssize_t n = mSource->readAt(
503 ssize_t NuCachedSource2::readAt(off64_t offset, void *data, size_t size) { function in class:android::NuCachedSource2
506 ALOGV("readAt offset %lld, size %zu", offset, size);
H A DMPEG4Extractor.cpp173 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
221 ssize_t MPEG4DataSource::readAt(off64_t offset, void *data, size_t size) { function in class:android::MPEG4DataSource
230 return mSource->readAt(offset, data, size);
255 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
508 if (mDataSource->readAt(offset, hdr, 8) < 8) {
581 if (DataSource->readAt(offset, &data, 1) < 1) {
596 if (mDataSource->readAt(data_offset, &updateIdTag, 1) < 1) {
615 if (mDataSource->readAt(data_offset, &descriptorTag, 1) < 1) {
626 if (mDataSource->readAt(data_offset, buffer, 2) < 2) {
635 if (mDataSource->readAt(data_offse
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveDataSource.cpp85 ssize_t LiveDataSource::readAt(off64_t offset, void *data, size_t size) { function in class:android::LiveDataSource
/frameworks/wilhelm/src/android/
H A DBufferQueueSource.cpp57 ssize_t BufferQueueSource::readAt(off64_t offset, void *data, size_t size) { function in class:android::BufferQueueSource
58 SL_LOGD("BufferQueueSource::readAt(offset=%lld, data=%p, size=%d)", offset, data, size);
/frameworks/av/media/libmedia/
H A DIMediaHTTPConnection.cpp89 virtual ssize_t readAt(off64_t offset, void *buffer, size_t size) { function in struct:android::BpMediaHTTPConnection
99 ALOGE("remote readAt failed");
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp81 ssize_t MediaHTTP::readAt(off64_t offset, void *data, size_t size) { function in class:android::MediaHTTP
98 ssize_t n = mHTTPConnection->readAt(
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp65 virtual ssize_t readAt(off64_t offset, void *data, size_t size) { function in class:android::test::SRTDataSourceStub
/frameworks/av/media/libnbaio/
H A DNBLog.cpp33 int NBLog::Entry::readAt(size_t offset) const function in class:android::NBLog::Entry
190 mShared->mBuffer[rear + i] = entry->readAt(i);
194 mShared->mBuffer[i] = entry->readAt(written + i);
348 // log to push it out. Consider keeping the timestamp/body between calls to readAt().
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp43 virtual ssize_t readAt(off64_t offset, void *data, size_t size) { function in struct:android::MemorySource
128 if (source->readAt(
188 if (source->readAt(offset + sizeof(header), mData, mSize) != (ssize_t)mSize) {
852 if (source->readAt(size - V1_TAG_SIZE, mData, V1_TAG_SIZE)
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.cpp65 mReadMethod = env->GetMethodID(datasourceclass, "readAt", "(J[BI)I");
85 virtual ssize_t readAt(off64_t offset, void* buffer, size_t size) { function in class:android::JavaDataSourceBridge

Completed in 602 milliseconds