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

1 2 3 4 5 6 7 8 91011>>

  /external/fio/
helpers.h 11 extern int sync_file_range(int fd, off64_t offset, off64_t nbytes,
helpers.c 28 int sync_file_range(int fd, off64_t offset, off64_t nbytes, unsigned int flags)
  /external/fio/os/windows/
posix.h 4 typedef off_t off64_t; typedef
  /frameworks/av/media/libstagefright/include/
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,
101 off64_t mChunkOffsetOffset;
105 off64_t mSampleToChunkOffset;
108 off64_t mSampleSizeOffset
    [all...]
MPEG4Extractor.h 85 off64_t mMoofOffset;
106 status_t parseChunk(off64_t *offset, int depth);
107 status_t parseITunesMetaData(off64_t offset, size_t size);
108 status_t parse3GPPMetaData(off64_t offset, size_t size, int depth);
109 void parseID3v2MetaData(off64_t offset);
127 status_t parseDrmSINF(off64_t *offset, off64_t data_offset);
129 status_t parseTrackHeader(off64_t data_offset, off64_t data_size);
131 status_t parseSegmentIndex(off64_t data_offset, size_t data_size)
    [all...]
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;
SampleIterator.h 30 off64_t getSampleOffset() const { return mCurrentSampleOffset; }
52 off64_t mCurrentChunkOffset;
62 off64_t mCurrentSampleOffset;
69 status_t getChunkOffset(uint32_t chunk, off64_t *offset);
AVIExtractor.h 84 off64_t mMovieOffset;
88 ssize_t parseChunk(off64_t offset, off64_t size, int depth = 0);
89 status_t parseStreamHeader(off64_t offset, size_t size);
90 status_t parseStreamFormat(off64_t offset, size_t size);
91 status_t parseIndex(off64_t offset, size_t size);
97 off64_t *offset, size_t *size, bool *isKey,
NuCachedSource2.h 38 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
42 virtual status_t getSize(off64_t *size);
103 off64_t mCacheOffset;
105 off64_t mLastAccessPos;
126 ssize_t readInternal(off64_t offset, void *data, size_t size);
127 status_t seekInternal_l(off64_t offset);
  /bionic/libc/bionic/
posix_fadvise.cpp 33 extern "C" int __arm_fadvise64_64(int, int, off64_t, off64_t);
34 extern "C" int __fadvise64(int, off64_t, off64_t, int);
42 int posix_fadvise64(int fd, off64_t offset, off64_t length, int advice) {
47 int posix_fadvise64(int fd, off64_t offset, off64_t length, int advice) {
legacy_32_bit_support.cpp 44 extern "C" int __llseek(int, unsigned long, unsigned long, off64_t*, int);
70 // For lseek64 we need to use the llseek system call which splits the off64_t in two and
71 // returns the off64_t result via a pointer because 32-bit kernels can't return 64-bit results.
72 off64_t lseek64(int fd, off64_t off, int whence) {
73 off64_t result;
84 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset));
89 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset));
94 return fallocate64(fd, mode, static_cast<off64_t>(offset), static_cast<off64_t>(length))
    [all...]
  /frameworks/av/include/media/stagefright/
MediaHTTP.h 35 off64_t offset);
41 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
43 virtual status_t getSize(off64_t *size);
47 virtual status_t reconnectAtOffset(off64_t offset);
65 off64_t mCachedSize;
DataSource.h 61 virtual ssize_t readAt(off64_t offset, void *data, size_t size) = 0;
64 bool getUInt16(off64_t offset, uint16_t *x);
65 bool getUInt24(off64_t offset, uint32_t *x); // 3 byte int, returned as a 32-bit int
66 bool getUInt32(off64_t offset, uint32_t *x);
67 bool getUInt64(off64_t offset, uint64_t *x);
70 virtual status_t getSize(off64_t *size);
76 virtual status_t reconnectAtOffset(off64_t offset) {
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_mingw_off_t.h 15 __MINGW_EXTENSION typedef long long off64_t; typedef
24 typedef off64_t off_t;
  /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);
  /bionic/libc/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fadvise64(int, off64_t, off64_t, int);
77 extern int posix_fallocate64(int, off64_t, off64_t);
79 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int)
    [all...]
  /development/ndk/platforms/android-L/include/
fcntl.h 46 off64_t l_start;
47 off64_t l_len;
68 extern int fallocate64(int, int, off64_t, off64_t);
75 extern int posix_fallocate64(int, off64_t, off64_t);
77 extern ssize_t splice(int, off64_t*, int, off64_t*, size_t, unsigned int);
  /external/f2fs-tools/lib/
libf2fs_io.c 33 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
42 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
56 if (lseek64(config.dump_fd, (off64_t)offset, SEEK_SET) < 0)
68 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 91011>>