HomeSort by relevance Sort by last modified time
    Searched defs:readAt (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/av/media/libmedia/
MidiIoWrapper.cpp 27 static int readAt(void *handle, void *buffer, int pos, int size) {
28 return ((android::MidiIoWrapper*)handle)->readAt(buffer, pos, size);
69 int MidiIoWrapper::readAt(void *buffer, int offset, int size) {
70 ALOGV("readAt(%p, %d, %d)", buffer, offset, size);
73 return mDataSource->readAt(offset, buffer, size);
93 mEasFile.readAt = ::readAt;
IMediaHTTPConnection.cpp 90 virtual ssize_t readAt(off64_t offset, void *buffer, size_t size) {
100 ALOGE("remote readAt failed");
128 ALOGE("readAt got a NULL buffer");
132 ALOGE("readAt got a NULL mMemory->pointer()");
IDataSource.cpp 53 virtual ssize_t readAt(off64_t offset, size_t size) {
155 reply->writeInt64(readAt(offset, size));
  /frameworks/base/media/java/android/media/
MediaDataSource.java 51 public abstract int readAt(long position, byte[] buffer, int offset, int size)
MediaHTTPConnection.java 315 public int readAt(long offset, int size) {
319 private int readAt(long offset, byte[] data, int size) {
341 Log.d(TAG, "readAt " + offset + " / " + size + " => " + n);
346 Log.w(TAG, "readAt " + offset + " / " + size + " => " + e);
349 Log.w(TAG, "readAt " + offset + " / " + size + " => " + e);
352 Log.w(TAG, "readAt " + offset + " / " + size + " => " + e);
356 Log.d(TAG, "readAt " + offset + " / " + size + " => -1");
362 Log.d(TAG, "readAt " + offset + " / " + size + " => -1");
  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 34 ssize_t ThrottledSource::readAt(off64_t offset, void *data, size_t size) {
37 ssize_t n = mSource->readAt(offset, data, size);
DataURISource.cpp 88 ssize_t DataURISource::readAt(off64_t offset, void *data, size_t size) {
FileSource.cpp 131 ssize_t FileSource::readAt(off64_t offset, void *data, size_t size) {
CallbackDataSource.cpp 53 ssize_t CallbackDataSource::readAt(off64_t offset, void* data, size_t size) {
67 mIDataSource->readAt(offset + totalNumRead, numToRead);
129 ssize_t TinyCacheSource::readAt(off64_t offset, void* data, size_t size) {
131 return mSource->readAt(offset, data, size);
148 const ssize_t readMore = readAt(offset + remaining,
159 const ssize_t numRead = mSource->readAt(offset, mCache, kCacheSize);
NuCachedSource2.cpp 224 // So whenever we call DataSource::readAt it may end up in a call to
225 // IMediaHTTPConnection::readAt and therefore call back into JAVA.
269 // explicitly signal mCondition so that the pending readAt()
362 ssize_t n = mSource->readAt(
514 ssize_t NuCachedSource2::readAt(off64_t offset, void *data, size_t size) {
517 ALOGV("readAt offset %lld, size %zu", (long long)offset, size);
598 // data could be on the stack of the caller to NuCachedSource2::readAt(),
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
DexDataStore.java 10 @Nonnull InputStream readAt(int offset);
FileDataStore.java 21 @Nonnull @Override public InputStream readAt(int offset) {
MemoryDataStore.java 53 @Nonnull @Override public InputStream readAt(final int offset) {
  /frameworks/base/media/jni/
android_media_MediaDataSource.cpp 43 mReadMethod = env->GetMethodID(mediaDataSourceClass.get(), "readAt", "(J[BII)I");
72 ssize_t JMediaDataSource::readAt(off64_t offset, size_t size) {
86 ALOGW("An exception occurred in readAt()");
94 ALOGW("An error occurred in readAt()");
103 ALOGE("readAt read too many bytes.");
108 ALOGV("readAt %lld / %zu => %d.", (long long)offset, size, numread);
  /frameworks/av/media/libstagefright/httplive/
LiveDataSource.cpp 85 ssize_t LiveDataSource::readAt(off64_t offset, void *data, size_t size) {
  /frameworks/av/media/libstagefright/include/
RemoteDataSource.h 46 virtual ssize_t readAt(off64_t offset, size_t size) {
47 ALOGV("readAt(%lld, %zu)", (long long)offset, size);
51 return mSource->readAt(offset, mMemory->pointer(), size);
  /frameworks/wilhelm/src/android/
BufferQueueSource.cpp 57 ssize_t BufferQueueSource::readAt(off64_t offset, void *data, size_t size) {
58 SL_LOGD("BufferQueueSource::readAt(offset=%lld, data=%p, size=%d)", offset, data, size);
  /frameworks/av/media/libstagefright/http/
MediaHTTP.cpp 93 ssize_t MediaHTTP::readAt(off64_t offset, void *data, size_t size) {
110 ssize_t n = mHTTPConnection->readAt(
  /cts/tests/tests/media/src/android/media/cts/
TestMediaDataSource.java 65 public synchronized int readAt(long position, byte[] buffer, int offset, int size)
68 throw new IOException("Test exception from readAt()");
  /external/sonivox/arm-wt-22k/host_src/
eas_hostmm.c 88 int (*readAt)(void *handle, void *buf, int offset, int size);
257 file->readAt = locator->readAt;
300 count = file->readAt(file->handle, pBuffer, file->filePos, count);
487 dupFile->readAt = file->readAt;
eas_types.h 143 int(*readAt)(void *handle, void *buf, int offset, int size);
  /frameworks/av/media/libstagefright/id3/
ID3.cpp 43 virtual ssize_t readAt(off64_t offset, void *data, size_t size) {
131 if (source->readAt(
191 if (source->readAt(offset + sizeof(header), mData, mSize) != (ssize_t)mSize) {
967 if (source->readAt(size - V1_TAG_SIZE, mData, V1_TAG_SIZE)
  /frameworks/av/media/libnbaio/
NBLog.cpp 37 int NBLog::Entry::readAt(size_t offset) const
475 temp[i] = entry->readAt(i);
719 // log to push it out. Consider keeping the timestamp/body between calls to readAt().
  /packages/apps/TV/src/com/android/tv/tuner/source/
FileTsStreamer.java 110 int ret = mTsStreamer.readAt(mStartBufferedPosition + mLastReadPosition.get(), buffer,
343 public int readAt(long pos, byte[] buffer, int offset, int amount) throws IOException {
TunerTsStreamer.java 102 int ret = mTsStreamer.readAt(mStartBufferedPosition + mLastReadPosition.get(), buffer,
323 public int readAt(long pos, byte[] buffer, int offset, int amount) throws IOException {

Completed in 442 milliseconds

1 2