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

  /bionic/libc/arch-arm/syscalls/
ftruncate.S 6 ENTRY(ftruncate) function
15 END(ftruncate)
  /bionic/libc/arch-mips/syscalls/
ftruncate.S 4 .globl ftruncate
6 .ent ftruncate
8 ftruncate: label
22 .end ftruncate
  /bionic/libc/arch-x86/syscalls/
ftruncate.S 6 ENTRY(ftruncate) function
24 END(ftruncate)
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 100 @Override public void ftruncate(FileDescriptor fd, long length) throws ErrnoException { method in class:BlockGuardOs
102 os.ftruncate(fd, length);
Os.java 50 public void ftruncate(FileDescriptor fd, long length) throws ErrnoException; method in interface:Os
Posix.java 53 public native void ftruncate(FileDescriptor fd, long length) throws ErrnoException; method in class:Posix
ForwardingOs.java 59 public void ftruncate(FileDescriptor fd, long length) throws ErrnoException { os.ftruncate(fd, length); } method in class:ForwardingOs
  /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))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 976 # define ftruncate macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 976 # define ftruncate macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 976 # define ftruncate macro
    [all...]
  /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...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 236 Libcore.os.ftruncate(fd, position + size);
455 Libcore.os.ftruncate(fd, size);
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 629 Libcore.os.ftruncate(fd, newLength);
  /external/qemu/
qemu-common.h 106 #define ftruncate qemu_ftruncate64 macro

Completed in 560 milliseconds