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

/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.c316 off64_t FwdLockFile_lseek(int fileDesc, off64_t offset, int whence) { argument
323 switch (whence) {
325 newFilePos = lseek64(pSession->fileDesc, pSession->dataOffset + offset, whence);
329 newFilePos = lseek64(pSession->fileDesc, offset, whence);
/frameworks/base/libs/androidfw/
H A DAsset.cpp353 * Do generic seek() housekeeping. Pass in the offset/whence values from
359 off64_t Asset::handleSeek(off64_t offset, int whence, off64_t curPosn, off64_t maxPosn) argument
363 switch (whence) {
374 ALOGW("unexpected whence %d\n", whence);
553 off64_t _FileAsset::seek(off64_t offset, int whence) argument
559 newPosn = handleSeek(offset, whence, mOffset, mLength);
854 off64_t _CompressedAsset::seek(off64_t offset, int whence) argument
859 newPosn = handleSeek(offset, whence, mOffset, mUncompressedLen);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp654 off64_t offset, int whence) {
657 off_t offset, int whence) {
664 offval = FwdLockFile_lseek(session->fileDesc, offset, whence);
653 onLseek(int , DecryptHandle* decryptHandle, off64_t offset, int whence) argument
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java810 private native final long seekAsset(long asset, long offset, int whence); argument
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp494 jlong offset, jint whence)
504 offset, (whence > 0) ? SEEK_END : (whence < 0 ? SEEK_SET : SEEK_CUR));
492 android_content_AssetManager_seekAsset(JNIEnv* env, jobject clazz, jlong assetHandle, jlong offset, jint whence) argument

Completed in 918 milliseconds