HomeSort by relevance Sort by last modified time
    Searched defs:ftruncate (Results 1 - 25 of 28) sorted by null

1 2

  /bionic/libc/arch-arm/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
14 END(ftruncate)
  /bionic/libc/arch-arm64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
14 END(ftruncate)
17 .equ ftruncate64, ftruncate
  /bionic/libc/arch-mips/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
19 END(ftruncate)
  /bionic/libc/arch-mips64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
25 END(ftruncate)
28 .equ ftruncate64, ftruncate
  /bionic/libc/arch-x86/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
26 END(ftruncate)
  /bionic/libc/arch-x86_64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
15 END(ftruncate)
18 .equ ftruncate64, ftruncate
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
ftruncate.c 8 int ftruncate(int fd, off_t length) { function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
unistd.h 48 int ftruncate(int, off32_t);
53 __CRT_INLINE int ftruncate(int __fd, off32_t __length) function
59 int ftruncate(int, _off_t);
64 __CRT_INLINE int ftruncate(int __fd, _off_t __length) function
75 #define ftruncate ftruncate64 macro
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 146 @Override public void ftruncate(FileDescriptor fd, long length) throws ErrnoException { method in class:BlockGuardOs
148 os.ftruncate(fd, length);
Os.java 66 public void ftruncate(FileDescriptor fd, long length) throws ErrnoException; method in interface:Os
ForwardingOs.java 75 public void ftruncate(FileDescriptor fd, long length) throws ErrnoException { os.ftruncate(fd, length); } method in class:ForwardingOs
Posix.java 69 public native void ftruncate(FileDescriptor fd, long length) throws ErrnoException; method in class:Posix
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 220 // Called by ftruncate()
221 int (*ftruncate)(const char* path, off_t, struct fuse_file_info*); member in struct:fuse_operations
kernel_proxy.cc 606 int KernelProxy::ftruncate(int fd, off_t length) { function in class:nacl_io::KernelProxy
614 error = handle->node()->FTruncate(length);
738 int result = ftruncate(fd, len);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 254 <http://www.opengroup.org/susv3xsh/ftruncate.html>. */
255 extern int ftruncate (int fd, off_t length);
258 # undef ftruncate macro
259 # define ftruncate(f,l) \ macro
260 (GL_LINK_WARNING ("ftruncate is unportable - " \
261 "use gnulib module ftruncate for portability"), \
262 ftruncate (f, l))
  /external/bison/darwin-lib/
unistd.h 882 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html>. */
885 # undef ftruncate
886 # define ftruncate rpl_ftruncate
888 _GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length));
889 _GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length));
892 _GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length));
894 _GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length));
896 _GL_CXXALIASWARN (ftruncate);
898 # undef ftruncate macro
900 _GL_WARN_ON_USE (ftruncate, "ftruncate is unportable -
    [all...]
  /external/bison/linux-lib/
unistd.h 882 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html>. */
885 # undef ftruncate
886 # define ftruncate rpl_ftruncate
888 _GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length));
889 _GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length));
892 _GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length));
894 _GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length));
896 _GL_CXXALIASWARN (ftruncate);
898 # undef ftruncate macro
900 _GL_WARN_ON_USE (ftruncate, "ftruncate is unportable -
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
unistd.h 1026 # define ftruncate macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
unistd.h 1026 # define ftruncate macro
    [all...]
  /external/qemu/include/
qemu-common.h 102 #if !defined(ftruncate)
103 # define ftruncate qemu_ftruncate64 macro
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 625 Libcore.os.ftruncate(fd, newLength);
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 240 Libcore.os.ftruncate(fd, position + size);
461 Libcore.os.ftruncate(fd, size);
  /libcore/luni/src/main/java/android/system/
Os.java 137 * See <a href="http://man7.org/linux/man-pages/man2/ftruncate.2.html">ftruncate(2)</a>.
139 public static void ftruncate(FileDescriptor fd, long length) throws ErrnoException { Libcore.os.ftruncate(fd, length); } method in class:Os
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 492 Log.w(TAG, "fallocate() not supported; falling back to ftruncate()");
493 Os.ftruncate(outFd, mInfoDelta.mTotalBytes);
600 Os.ftruncate(target.getFileDescriptor(), 0);
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java     [all...]

Completed in 1043 milliseconds

1 2