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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-mips/syscalls/
ftruncate.S 4 .globl ftruncate
6 .ent ftruncate
8 ftruncate: label
22 .end ftruncate
  /bionic/libc/arch-arm/syscalls/
ftruncate.S 6 ENTRY(ftruncate) function
15 END(ftruncate)
  /bionic/libc/arch-x86/syscalls/
ftruncate.S 6 ENTRY(ftruncate) function
24 END(ftruncate)
  /external/openssh/openbsd-compat/
xmmap.c 74 if (ftruncate(tmpfd, size) != 0)
75 fatal("%s: ftruncate: %s", __func__, strerror(errno));
  /frameworks/compile/mclinker/lib/Support/Unix/
FileSystem.inc 47 int ftruncate(int pFD, size_t pLength)
49 return ::ftruncate(pFD, pLength);
  /libcore/luni/src/main/native/
Portability.h 35 #define ftruncate64 ftruncate
  /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/elfutils/libelf/
elf_update.c 84 && unlikely (ftruncate (elf->fildes, size) != 0))
126 && unlikely (ftruncate (elf->fildes, size) != 0))
132 /* POSIX says that ftruncate and write may clear the S_ISUID and S_ISGID
  /external/valgrind/main/none/tests/amd64/
faultstatus.c 109 ftruncate(fd, FILESIZE);
  /frameworks/av/drm/common/
ReadWriteUtils.cpp 86 if (FAILURE != ftruncate(fd, size)) {
  /external/bison/lib/
unistd.in.h 570 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html>. */
573 # undef ftruncate
574 # define ftruncate rpl_ftruncate
576 _GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length));
577 _GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length));
580 _GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length));
582 _GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length));
584 _GL_CXXALIASWARN (ftruncate);
586 # undef ftruncate
588 _GL_WARN_ON_USE (ftruncate, "ftruncate is unportable -
    [all...]
  /development/tools/line_endings/
line_endings.c 91 ftruncate(fd, 0);
  /external/chromium/base/
platform_file_posix.cc 158 return ((file >= 0) && !HANDLE_EINTR(ftruncate(file, length)));
  /external/e2fsprogs/tests/progs/
random_exercise.c 110 ftruncate(fd, size);
  /external/protobuf/
config.h.in 24 /* Define to 1 if you have the `ftruncate' function. */
  /external/stressapptest/
configure.ac 135 AC_CHECK_FUNCS([ftruncate gettimeofday memset munmap select socket strtol strtoull])
  /external/valgrind/main/none/tests/
faultstatus.c 148 ftruncate(fd, FILESIZE);
  /external/valgrind/main/none/tests/x86/
faultstatus.c 127 ftruncate(fd, FILESIZE);
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 118 if (::ftruncate(mFD, 0) == 0) {
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 114 int ftruncate(int pFD, size_t pLength);
  /system/core/libcutils/
ashmem-host.c 69 if (ftruncate(fd, size) == -1)
  /external/oprofile/libdb/
db_manage.c 77 if (ftruncate(data->fd, new_file_size))
225 if (ftruncate(data->fd, file_size)) {
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 116 // ftruncate returns 0 to indicate the success.
117 return !ftruncate(handle, offset);
  /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);
  /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...]

Completed in 1239 milliseconds

1 2 3 4 5 6 7 8 91011>>