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

1 2 3

  /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) {
posix_fallocate.cpp 38 int posix_fallocate64(int fd, off64_t offset, off64_t length) {
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...]
mmap.cpp 42 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) {
63 return mmap64(addr, size, prot, flags, fd, static_cast<off64_t>(offset));
  /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...]
unistd.h 128 extern int truncate64(const char *, off64_t);
135 extern off64_t lseek64(int, off64_t, int);
140 extern ssize_t pread64(int, void *, size_t, off64_t);
142 extern ssize_t pwrite64(int, const void *, size_t, off64_t);
155 extern int ftruncate64(int, off64_t);
  /external/fio/os/windows/
posix.h 4 typedef off_t off64_t; typedef
  /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);
unistd.h 131 extern int truncate64(const char *, off64_t);
138 extern off64_t lseek64(int, off64_t, int);
143 extern ssize_t pread64(int, void *, size_t, off64_t);
145 extern ssize_t pwrite64(int, const void *, size_t, off64_t);
158 extern int ftruncate64(int, off64_t);
  /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)
  /development/ndk/platforms/android-13/include/android/
asset_manager.h 105 * Returns the new position on success, or (off64_t) -1 on error.
107 off64_t AAsset_seek64(AAsset* asset, off64_t offset, int whence);
130 off64_t AAsset_getLength64(AAsset* asset);
142 off64_t AAsset_getRemainingLength64(AAsset* asset);
163 int AAsset_openFileDescriptor64(AAsset* asset, off64_t* outStart, off64_t* outLength);
  /bionic/libc/include/sys/
sendfile.h 38 extern ssize_t sendfile64(int out_fd, int in_fd, off64_t* offset, size_t count);
mman.h 47 extern void* mmap64(void*, size_t, int, int, int, off64_t);
  /development/ndk/platforms/android-L/include/sys/
sendfile.h 38 extern ssize_t sendfile64(int out_fd, int in_fd, off64_t* offset, size_t count);
mman.h 47 extern void* mmap64(void*, size_t, int, int, int, off64_t);
  /external/compiler-rt/lib/interception/
interception_type_test.cc 28 COMPILER_CHECK(sizeof(::OFF64_T) == sizeof(off64_t));
  /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)
  /external/elfutils/0.153/src/
strings.c 56 static int read_fd (int fd, const char *fname, off64_t fdlen);
57 static int read_elf (Elf *elf, int fd, const char *fname, off64_t fdlen);
138 static off64_t elfmap_off;
190 off64_t fdlen = (fstat_fail
192 if (fdlen > (off64_t) min_len_bytes)
326 process_chunk_mb (const char *fname, const unsigned char *buf, off64_t to,
400 process_chunk (const char *fname, const unsigned char *buf, off64_t to,
461 map_file (int fd, off64_t start_off, off64_t fdlen, size_t *map_sizep)
481 size_t map_size = MIN ((off64_t) mmap_max, fdlen)
    [all...]
  /bionic/libc/include/android/
dlext.h 78 off64_t library_fd_offset;
  /bionic/tests/
sys_types_test.cpp 42 ASSERT_EQ(8U, sizeof(off64_t));
  /development/ndk/platforms/android-12/include/
unistd.h 132 extern off64_t lseek64(int, off64_t, int);
137 extern ssize_t pread64(int, void *, size_t, off64_t);
139 extern ssize_t pwrite64(int, const void *, size_t, off64_t);
149 extern int ftruncate64(int, off64_t);
  /cts/tests/tests/drm/lib/
TestPlugin.h 77 int uniqueId, DecryptHandle* decryptHandle, int fd, off64_t offset, off64_t length);
93 void* buffer, ssize_t numBytes, off64_t offset);
  /external/fio/os/
os-netbsd.h 36 typedef off_t off64_t; typedef
os-openbsd.h 34 typedef off_t off64_t; typedef

Completed in 214 milliseconds

1 2 3