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

1 2 3 4 5 6 7 8 910

  /bionic/libc/arch-arm64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
14 END(ftruncate)
16 ALIAS_SYMBOL(ftruncate64, ftruncate)
  /bionic/libc/arch-x86_64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
15 END(ftruncate)
17 ALIAS_SYMBOL(ftruncate64, ftruncate)
  /external/curl/src/
tool_cb_see.h 30 #undef ftruncate macro
31 #define ftruncate(fd,where) tool_ftruncate64(fd,where) macro
  /toolchain/binutils/binutils-2.25/gold/
ftruncate.c 0 /* ftruncate emulations that work on some System V's.
31 extern int ftruncate (int, off_t);
36 ftruncate (int fd, off_t length) function
50 ftruncate (int fd, off_t length) function
93 ftruncate (int fd, off_t length) function
103 ftruncate (int fd, off_t length) function
  /bionic/libc/arch-mips64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
25 END(ftruncate)
27 ALIAS_SYMBOL(ftruncate64, ftruncate)
  /bionic/libc/bionic/
ftruncate.cpp 25 // The kernel's implementation of ftruncate uses an unsigned long for the length
28 int ftruncate(int filedes, off_t length) { function
  /external/valgrind/none/tests/mips32/
bug320057-mips32.stdout.exp 2 ftruncate(fd, SZ); status: Success
bug320057-mips32.c 24 ftruncate(fd, SZ);
25 DO(ftruncate(fd, SZ));
  /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
  /external/strace/tests/
ftruncate64.c 44 int rc = ftruncate(-1, len);
ftruncate.c 49 rc = ftruncate(-1, len);
56 printf("ftruncate(-1, %llu) = -1 EBADF (Bad file descriptor)\n",
struct_flock.c 96 return mkstemp(fname) || unlink(fname) || ftruncate(0, FILE_LEN) ? 77 : 0;
  /external/strace/
truncate.c 19 SYS_FUNC(ftruncate)
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd_hostops.c 49 .op_ftruncate = ftruncate,
  /external/toybox/toys/other/
truncate.c 51 if (ftruncate(fd, size)) perror_msg("'%s' to '%lld'", name, size);
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 65 if (::ftruncate(mFD, 0) == 0) {
  /external/autotest/client/tests/aio_dio_bugs/src/
aio-dio-subblock-eof-read.c 54 ret = ftruncate(fd, FILE_SIZE);
  /system/core/libcutils/
ashmem-host.c 50 if (TEMP_FAILURE_RETRY(ftruncate(fd, size)) == -1) {
  /external/elfutils/libelf/
elf_update.c 64 && unlikely (ftruncate (elf->fildes, size) != 0))
82 really there. Only using ftruncate might mean the file is
124 && unlikely (ftruncate (elf->fildes, size) != 0))
130 /* POSIX says that ftruncate and write may clear the S_ISUID and S_ISGID
  /external/e2fsprogs/contrib/
fallocate.c 163 error = ftruncate(fd, length);
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 98 int ftruncate(int pFD, size_t pLength);
  /bionic/tests/
unistd_test.cpp 174 TEST(UNISTD_TEST, ftruncate) {
176 ASSERT_EQ(0, ftruncate(tf.fd, 123));
197 ASSERT_EQ(-1, ftruncate(tf.fd, -123));
872 ASSERT_EQ(0, ftruncate(tf.fd, file_size));
895 ASSERT_EQ(0, ftruncate(tf.fd, file_size));
906 ASSERT_EQ(0, ftruncate(tf.fd, 2*file_size));
917 ASSERT_EQ(0, ftruncate(tf.fd, file_size));
932 ASSERT_EQ(0, ftruncate(tf.fd, file_size));
959 ASSERT_EQ(0, ftruncate(tf.fd, file_size));
  /development/tools/line_endings/
line_endings.c 91 ftruncate(fd, 0);
  /external/autotest/client/tests/linus_stress/
linus_stress.c 92 if (ftruncate(fd, SIZE) < 0)
  /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 555 milliseconds

1 2 3 4 5 6 7 8 910