HomeSort by relevance Sort by last modified time
    Searched refs:off64_t (Results 1 - 25 of 265) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/include/androidfw/
Asset.h 74 * lseek/fseek. Returns the new position on success, or (off64_t) -1
77 virtual off64_t seek(off64_t offset, int whence) = 0;
92 virtual off64_t getLength(void) const = 0;
97 virtual off64_t getRemainingLength(void) const = 0;
104 virtual int openFileDescriptor(off64_t* outStart, off64_t* outLength) const = 0;
125 off64_t handleSeek(off64_t offset, int whence, off64_t curPosn, off64_t maxPosn)
    [all...]
StreamingZipInflater.h 34 StreamingZipInflater(int fd, off64_t compDataStart, size_t uncompSize, size_t compSize);
48 off64_t seekAbsolute(off64_t absoluteInputPosition);
56 off64_t mInFileStart; // where the compressed data lives in the file
68 off64_t mOutCurPosition; // current position in total offset
  /frameworks/av/media/libstagefright/include/
VBRISeeker.h 31 const sp<DataSource> &source, off64_t post_id3_pos);
34 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos);
37 off64_t mBasePos;
SampleTable.h 41 uint32_t type, off64_t data_offset, size_t data_size);
43 status_t setSampleToChunkParams(off64_t data_offset, size_t data_size);
47 uint32_t type, off64_t data_offset, size_t data_size);
49 status_t setTimeToSampleParams(off64_t data_offset, size_t data_size);
52 off64_t data_offset, size_t data_size);
54 status_t setSyncSampleParams(off64_t data_offset, size_t data_size);
66 off64_t *offset,
99 off64_t mChunkOffsetOffset;
103 off64_t mSampleToChunkOffset;
106 off64_t mSampleSizeOffset
    [all...]
XINGSeeker.h 29 const sp<DataSource> &source, off64_t first_frame_pos);
32 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos);
ChromiumHTTPDataSource.h 36 off64_t offset = 0);
42 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
43 virtual status_t getSize(off64_t *size);
54 virtual status_t reconnectAtOffset(off64_t offset);
85 off64_t mCurrentOffset;
103 off64_t offset);
NuCachedSource2.h 38 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
40 virtual status_t getSize(off64_t *size);
101 off64_t mCacheOffset;
103 off64_t mLastAccessPos;
123 ssize_t readInternal(off64_t offset, void *data, size_t size);
124 status_t seekInternal_l(off64_t offset);
MPEG4Extractor.h 78 off64_t mMoofOffset;
97 status_t parseChunk(off64_t *offset, int depth);
98 status_t parseMetaData(off64_t offset, size_t size);
116 status_t parseDrmSINF(off64_t *offset, off64_t data_offset);
118 status_t parseTrackHeader(off64_t data_offset, off64_t data_size);
120 status_t parseSegmentIndex(off64_t data_offset, size_t data_size);
MP3Seeker.h 34 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos) = 0;
  /frameworks/wilhelm/src/android/
BufferQueueSource.h 40 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
42 virtual status_t getSize(off64_t *size);
52 off64_t mStreamToBqOffset;
  /system/core/include/utils/
Compat.h 28 typedef off_t off64_t; typedef
30 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
35 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) {
FileMap.h 60 off64_t offset, size_t length, bool readOnly);
80 off64_t getDataOffset(void) const { return mDataOffset; }
123 off64_t mDataOffset; // offset used when map was created
  /bionic/libc/bionic/
lseek64.c 32 off64_t lseek64(int fd, off64_t off, int whence)
pread.c 33 return pread64(fd, buf, nbytes, (off64_t)offset);
pwrite.c 33 return pwrite64(fd, buf, nbytes, (off64_t)offset);
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 23 off64_t pos = fAsset->seek(0, SEEK_SET);
24 if (pos == (off64_t)-1) {
57 off64_t oldOffset = fAsset->seek(0, SEEK_CUR);
62 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
86 off64_t size = asset->seek(0, SEEK_SET);
87 if ((off64_t)-1 == size) {
100 off64_t len = asset->read(data, size);
  /frameworks/av/media/libstagefright/httplive/
LiveDataSource.h 35 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
36 ssize_t readAtNonBlocking(off64_t offset, void *data, size_t size);
51 off64_t mOffset;
57 ssize_t readAt_l(off64_t offset, void *data, size_t size);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.h 58 * @retval ((off64_t)-1) Failure.
60 off64_t FwdLockFile_lseek(int fileDesc, off64_t offset, int whence);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.h 43 off64_t errorPos;
54 off64_t fileOffset;
57 off64_t errorPos;
100 * @retval ((off64_t)-1) Failure.
102 typedef off64_t FwdLockConv_LSeekFunc_t(int fileDesc, off64_t offset, int whence);
246 off64_t *pErrorPos);
  /frameworks/native/include/android/
asset_manager.h 103 * Returns the new position on success, or (off64_t) -1 on error.
105 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);
128 off64_t AAsset_getLength64(AAsset* asset);
140 off64_t AAsset_getRemainingLength64(AAsset* asset);
161 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength);
  /frameworks/av/include/media/stagefright/
DataSource.h 53 virtual ssize_t readAt(off64_t offset, void *data, size_t size) = 0;
56 bool getUInt16(off64_t offset, uint16_t *x);
57 bool getUInt24(off64_t offset, uint32_t *x); // 3 byte int, returned as a 32-bit int
58 bool getUInt32(off64_t offset, uint32_t *x);
59 bool getUInt64(off64_t offset, uint64_t *x);
62 virtual status_t getSize(off64_t *size);
68 virtual status_t reconnectAtOffset(off64_t offset) {
FileSource.h 37 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
39 virtual status_t getSize(off64_t *size);
61 ssize_t readAtDRM(off64_t offset, void *data, size_t size);
JPEGSource.h 45 off64_t mSize;
47 off64_t mOffset;
  /frameworks/base/media/tests/omxjpegdecoder/
StreamSource.h 35 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
36 virtual status_t getSize(off64_t *size);
  /external/compiler-rt/lib/interception/
interception_type_test.cc 28 COMPILER_CHECK(sizeof(OFF64_T) == sizeof(off64_t));

Completed in 1760 milliseconds

1 2 3 4 5 6 7 8 91011