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

12

/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp23 off64_t pos = fAsset->seek(0, SEEK_SET);
25 SkDebugf("----- fAsset->seek(rewind) failed\n");
38 // asset->seek returns new total offset
41 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
43 SkDebugf("---- fAsset->seek(oldOffset) failed\n");
46 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
48 SkDebugf("---- fAsset->seek(%d) failed\n", size);
H A DTypeface.cpp75 off64_t pos = fAsset->seek(0, SEEK_SET);
88 // asset->seek returns new total offset
91 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
94 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
/frameworks/rs/driver/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/rs/driver/linkloader/include/
H A DELFSectionProgBits.h70 AR.seek(sh->getOffset(), true);
/frameworks/av/libvideoeditor/vss/src/
H A DM4AMRR_CoreReader.c53 * For the seek, the file is splitted in 40 segments for faster search
83 M4OSA_UInt32 m_seekInterval; /* Stores the seek Interval stored in the Index */
243 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile,
334 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile, M4OSA_kFileSeekCurrent,
391 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile,
405 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile,
411 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile,
521 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContext->m_pAMRFile,
606 /* Coming to seek for the first time, need to build the seekIndex Table */
633 pStreamContext->m_pOsaFilePtrFct->seek(pStreamContex
[all...]
/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.h132 off_t seek(off_t pOffset);
/frameworks/rs/driver/linkloader/include/impl/
H A DELFSectionStrTab.hxx39 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/av/libvideoeditor/osal/inc/
H A DM4OSA_FileReader.h84 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon83
H A DM4OSA_FileWriter.h80 M4OSA_ERR (*seek) (M4OSA_Context context, member in struct:__anon85
109 the position in the file (from the beginning) after the seek in the "position"
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java64 mFile.seek(status.offset);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java162 raf.seek(fileLen - 6);
174 raf.seek(fileLen - (commentSize + 22));
271 raf.seek(0);
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorOsal.cpp332 pOsaFileReadPtr->seek = M4OSA_fileReadSeek;
343 pOsaFileWritePtr->seek = M4OSA_fileWriteSeek;
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoViewProxy.java89 // The seek position.
273 public static void seek(int time, HTML5VideoViewProxy proxy) { method in class:HTML5VideoViewProxy.VideoPlayer
393 VideoPlayer.seek(mSeekPosition, this);
684 seek(position);
711 public void seek(int time) { method in class:HTML5VideoViewProxy
H A DHTML5Audio.java324 private void seek(int msec) { method in class:HTML5Audio
/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp252 off_t FileBase::seek(off_t pOffset) { function in class:FileBase
/frameworks/opt/mms/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
/frameworks/av/libvideoeditor/osal/src/
H A DLVOSA_FileReader_optim.c122 optimized_fp->seek = M4OSA_fileReadSeek_optim;
255 errno = apContext->FS->seek(apContext->aFileDesc, M4OSA_kFileSeekCurrent,
542 apContext->FS->seek = M4OSA_fileReadSeek;
/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

Completed in 608 milliseconds

12