Searched defs:dataOffset (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c67 off64_t dataOffset; member in struct:FwdLockFile_Session
284 pSession->dataOffset = pSession->contentTypeLength +
336 newFilePos = lseek64(pSession->fileDesc, pSession->dataOffset + offset, whence);
348 if (newFilePos < pSession->dataOffset) {
351 (void)lseek64(pSession->fileDesc, pSession->dataOffset + pSession->filePos,
358 pSession->filePos = newFilePos - pSession->dataOffset;
394 if (lseek64(pSession->fileDesc, pSession->dataOffset, SEEK_SET) !=
395 pSession->dataOffset) {
412 (void)lseek64(pSession->fileDesc, pSession->dataOffset + pSession->filePos,
/frameworks/native/libs/utils/
H A DZipFileRO.cpp523 * dataOffset, because dataOffset is expensive to determine. However,
591 off64_t dataOffset = localHdrOffset + kLFHLen local
593 if (dataOffset >= cdOffset) {
594 ALOGW("bad data offset %ld in zip\n", (long) dataOffset);
599 if ((off64_t)(dataOffset + compLen) > cdOffset) {
601 (long) dataOffset, (ZD_TYPE) compLen, (long) cdOffset);
606 (off64_t)(dataOffset + uncompLen) > cdOffset)
609 (long) dataOffset, (ZD_TYPE) uncompLen, (long) cdOffset);
613 *pOffset = dataOffset;
[all...]
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp473 off64_t dataOffset = mOffset + 27 + mCurrentPage.mNumSegments; local
475 dataOffset += mCurrentPage.mLace[j];
503 dataOffset,
509 packetSize, dataOffset, n);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c154 size_t dataOffset; member in struct:FwdLockConv_Session
560 pSession->dataOffset = headerSignaturePos + SHA1_HASH_SIZE;
576 pOutput->fromConvertData.numBytes = pSession->dataOffset;
1175 pSession->dataOffset = 0;
1189 &((unsigned char *)pOutput->fromConvertData.pBuffer)[pSession->dataOffset],

Completed in 139 milliseconds