Searched defs:whence (Results 1 - 7 of 7) sorted by relevance

/frameworks/native/include/utils/
H A DCompat.h30 static inline off64_t lseek64(int fd, off64_t offset, int whence) { argument
31 return lseek(fd, offset, whence);
/frameworks/base/native/android/
H A Dasset_manager.cpp176 off_t AAsset_seek(AAsset* asset, off_t offset, int whence) argument
178 return asset->mAsset->seek(offset, whence);
181 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence) argument
183 return asset->mAsset->seek(offset, whence);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c313 off64_t FwdLockFile_lseek(int fileDesc, off64_t offset, int whence) { argument
320 switch (whence) {
322 newFilePos = lseek64(pSession->fileDesc, pSession->dataOffset + offset, whence);
326 newFilePos = lseek64(pSession->fileDesc, offset, whence);
/frameworks/base/libs/androidfw/
H A DAsset.cpp309 * Do generic seek() housekeeping. Pass in the offset/whence values from
315 off64_t Asset::handleSeek(off64_t offset, int whence, off64_t curPosn, off64_t maxPosn) argument
319 switch (whence) {
330 ALOGW("unexpected whence %d\n", whence);
502 off64_t _FileAsset::seek(off64_t offset, int whence) argument
508 newPosn = handleSeek(offset, whence, mOffset, mLength);
802 off64_t _CompressedAsset::seek(off64_t offset, int whence) argument
807 newPosn = handleSeek(offset, whence, mOffset, mUncompressedLen);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp643 off64_t offset, int whence) {
646 off_t offset, int whence) {
653 offval = FwdLockFile_lseek(session->fileDesc, offset, whence);
642 onLseek(int uniqueId, DecryptHandle* decryptHandle, off64_t offset, int whence) argument
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java680 private native final long seekAsset(int asset, long offset, int whence); argument
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp393 jlong offset, jint whence)
403 offset, (whence > 0) ? SEEK_END : (whence < 0 ? SEEK_SET : SEEK_CUR));
391 android_content_AssetManager_seekAsset(JNIEnv* env, jobject clazz, jint asset, jlong offset, jint whence) argument

Completed in 35 milliseconds