Searched refs:seek (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp38 off64_t pos = fAsset->seek(0, SEEK_SET);
40 SkDebugf("----- fAsset->seek(rewind) failed\n");
68 // asset->seek returns new total offset
71 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
73 SkDebugf("---- fAsset->seek(oldOffset) failed\n");
76 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
78 SkDebugf("---- fAsset->seek(%d) failed\n", size);
100 off64_t size = asset->seek(0, SEEK_SET);
/frameworks/rs/cpu_ref/linkloader/utils/
H A Dserialize.h86 void seek(off_t off, bool from_begin = false) { function in class:ArchiveReader
105 seek(size);
111 seek(size);
118 seek(TypeTraits<T>::size);
141 seek(align - delta);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java37 public void seek(int offset) { method in class:BridgeBufferIterator
/frameworks/multidex/library/src/android/support/multidex/
H A DZipUtil.java80 raf.seek(scanOffset);
110 raf.seek(dir.offset);
/frameworks/base/include/androidfw/
H A DAsset.h56 /* read chunks, and seek forward and backward */
59 /* read sequentially, with an occasional forward seek */
77 virtual off64_t seek(off64_t offset, int whence) = 0;
124 /* handle common seek() housekeeping */
239 virtual off64_t seek(off64_t offset, int whence);
251 FILE* mFp; // for read/seek
296 virtual off64_t seek(off64_t offset, int whence);
/frameworks/compile/libbcc/include/bcc/Support/
H A DFileBase.h131 off_t seek(off_t pOffset);
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h82 AR.seek(sh->getOffset(), true);
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionStrTab.hxx38 AR.seek(sh->getOffset(), true);
H A DELFSectionHeaderTable.hxx53 AR.seek(header->getSectionHeaderTableOffset(), true);
H A DELFSectionRelTable.hxx63 AR.seek(sh->getOffset(), true);
H A DELFSectionSymTab.hxx98 AR.seek(sh->getOffset(), true);
/frameworks/base/native/android/
H A Dasset_manager.cpp178 return asset->mAsset->seek(offset, whence);
183 return asset->mAsset->seek(offset, whence);
/frameworks/compile/slang/tests/
H A Dtest.py112 stdout_file.seek(0)
113 stderr_file.seek(0)
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
H A DAbstractService.java62 raf.seek(raf.length());
77 raf.seek(raf.length());
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java162 raf.seek(fileLen - 6);
174 raf.seek(fileLen - (commentSize + 22));
278 raf.seek(0);
/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp264 off_t FileBase::seek(off_t pOffset) { function in class:FileBase
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java138 rndAccessFile.seek(convertedStatus.offset);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericPlayer.h74 void seek(int64_t timeMsec);
107 kWhatSeek = 'seek', // request a seek to specified position
108 kWhatSeekComplete = 'skcp', // seek request has completed
169 kFlagSeeking = 1 << 4, // set if we (not Stagefright) initiated a seek
H A Dandroid_GenericPlayer.cpp164 seek(0);
168 void GenericPlayer::seek(int64_t timeMsec) { function in class:android::GenericPlayer
169 SL_LOGV("GenericPlayer::seek %lld", timeMsec);
171 SL_LOGE("GenericPlayer::seek error, can't seek to negative time %" PRId64 "ms", timeMsec);
616 // if we observe the player position going backwards, even without without a seek, then recover
H A Dandroid_StreamPlayer.cpp189 player->seek(ANDROID_UNKNOWN_TIME);
H A Dandroid_AudioSfDecoder.cpp393 // ignores mLastDecodedPositionUs while seeking, and substitutes the seek goal instead
538 seek(0);
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipUtilTest.java73 raf.seek(dir.offset);
/frameworks/base/libs/androidfw/
H A DAsset.cpp309 * Do generic seek() housekeeping. Pass in the offset/whence values from
310 * the seek request, along with the current chunk offset and the chunk
313 * Returns the new chunk offset, or -1 if the seek is illegal.
337 ALOGW("seek out of range: want %ld, end=%ld\n",
406 /* seek the FILE* to the start of chunk */
502 off64_t _FileAsset::seek(off64_t offset, int whence) function in class:_FileAsset
796 * Handle a seek request.
802 off64_t _CompressedAsset::seek(off64_t offset, int whence) function in class:_CompressedAsset
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp97 void seek(
359 void BlockIterator::seek( function in class:android::BlockIterator
370 // Special case the 0 seek to avoid loading Cues when the application
479 ALOGV("Requested seek point: %" PRId64 " actual: %" PRId64,
570 // The audio we want is located by using the Cues to seek the video
574 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java1066 mRAF.seek(0);
1103 mRAF.seek(0);
1113 mRAF.seek(0);

Completed in 1884 milliseconds

12