HomeSort by relevance Sort by last modified time
    Searched refs:off_t (Results 176 - 200 of 1309) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 20 typedef off_t Offset;
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/sys/
sendfile.h 37 extern ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count);
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/sys/
sendfile.h 37 extern ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count);
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/sys/
sendfile.h 37 extern ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count);
  /external/chromium_org/mojo/system/
raw_shared_buffer_posix.cc 11 #include <sys/types.h> // For |off_t|.
26 // We assume that |size_t| and |off_t| (type for |ftruncate()|) fits in a
29 COMPILE_ASSERT(sizeof(off_t) <= sizeof(uint64_t), off_t_too_big);
42 static_cast<uint64_t>(std::numeric_limits<off_t>::max())) {
77 if (HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(num_bytes_))) != 0) {
91 static_cast<uint64_t>(std::numeric_limits<off_t>::max())) {
107 if (sb.st_size != static_cast<off_t>(num_bytes_)) {
125 // |off_t| on creation, but it never hurts to be paranoid.
127 static_cast<uint64_t>(std::numeric_limits<off_t>::max()));
130 handle_.get().fd, static_cast<off_t>(real_offset))
    [all...]
  /external/e2fsprogs/lib/ext2fs/
llseek.c 109 if (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))
110 return lseek(fd, (off_t) offset, origin);
129 if ((sizeof(off_t) < sizeof(ext2_loff_t)) &&
130 (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) {
134 return lseek (fd, (off_t) offset, origin);
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 54 off_t pFileOffset = 0);
60 off_t pFileOffset = 0);
103 off_t fileOffset() const
106 void setFileOffset(off_t pFileOffset)
136 off_t m_fileOffset;
  /bootable/recovery/applypatch/
bsdiff.c 60 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h)
62 off_t i,j,k,x,tmp,jj,kk;
121 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize)
123 off_t buckets[256]
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobsdiff.c 58 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h)
60 off_t i,j,k,x,tmp,jj,kk;
119 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize)
121 off_t buckets[256]
    [all...]
  /external/bsdiff/
bsdiff.c 43 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h)
45 off_t i,j,k,x,tmp,jj,kk;
104 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize)
106 off_t buckets[256]
    [all...]
  /external/lldb/include/lldb/Host/
File.h 237 /// that takes an "off_t &offset" to ensure correct operation in
258 /// that takes an "off_t &offset" to ensure correct operation in
282 /// @see File::Read (void *, size_t, off_t &)
283 /// @see File::Write (const void *, size_t, off_t &)
296 off_t
297 SeekFromStart (off_t offset, Error *error_ptr = NULL);
305 /// @see File::Read (void *, size_t, off_t &)
306 /// @see File::Write (const void *, size_t, off_t &)
319 off_t
320 SeekFromCurrent (off_t offset, Error *error_ptr = NULL)
    [all...]
  /art/compiler/
buffered_output_stream.cc 52 off_t BufferedOutputStream::Seek(off_t offset, Whence whence) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
ftell.c 42 off_t
90 off_t offset = ftello(fp);
  /build/tools/atree/
files.h 29 off_t sourceSize;
34 off_t outSize;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs_node.h 30 virtual Error FTruncate(off_t size);
37 virtual Error GetSize(off_t* out_size);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
fdopen.c 22 static int fdopen_seek(void *cookie, off_t *offset, int whence) {
23 off_t ret = lseek((int) cookie, *offset, whence);
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_system.h 54 int SeekTo(off_t offset);
59 off_t offset);
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFPage.h 66 off_t getPageSize(SkPDFCatalog* catalog, off_t fileOffset);
  /external/elfutils/0.153/src/
arlib.h 96 const char *membername, off_t off);
99 extern void arlib_add_symref (const char *symname, off_t symoff);
  /external/skia/src/pdf/
SkPDFPage.h 66 off_t getPageSize(SkPDFCatalog* catalog, off_t fileOffset);
  /frameworks/base/native/android/
asset_manager.cpp 176 off_t AAsset_seek(AAsset* asset, off_t offset, int whence)
197 off_t AAsset_getLength(AAsset* asset)
207 off_t AAsset_getRemainingLength(AAsset* asset)
217 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength)
223 *outStart = off_t(outStart64);
224 *outLength = off_t(outLength64);
  /ndk/sources/android/crazy_linker/src/
crazy_linker_system.h 54 int SeekTo(off_t offset);
59 off_t offset);
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 82 // There is no pread for 32-bit off_t, so we need to widen and call pread64.
83 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) {
87 // There is no pwrite for 32-bit off_t, so we need to widen and call pwrite64.
88 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) {
92 // There is no fallocate for 32-bit off_t, so we need to widen and call fallocate64.
93 int fallocate(int fd, int mode, off_t offset, off_t length) {
  /development/ndk/platforms/android-L/include/
fcntl.h 69 extern int fallocate(int, int, off_t, off_t);
76 extern int posix_fallocate(int, off_t, off_t);
  /external/chromium_org/content/public/common/
child_process_sandbox_support_linux.h 50 CONTENT_EXPORT bool GetFontTable(int fd, uint32_t table_tag, off_t offset,

Completed in 3128 milliseconds

1 2 3 4 5 6 78 91011>>