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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
ftruncate.c 8 int ftruncate(int fd, off_t length) { function
  /bionic/libc/arch-arm64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
14 END(ftruncate)
17 .equ ftruncate64, ftruncate
  /bionic/libc/arch-x86_64/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
15 END(ftruncate)
18 .equ ftruncate64, ftruncate
  /bionic/libc/arch-arm/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
14 END(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
  /external/valgrind/main/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
  /bionic/libc/arch-x86/syscalls/
ftruncate.S 5 ENTRY(ftruncate) function
26 END(ftruncate)
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd_hostops.c 49 .op_ftruncate = ftruncate,
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 65 if (::ftruncate(mFD, 0) == 0) {
  /libcore/luni/src/main/native/
Portability.h 35 #define ftruncate64 ftruncate
  /external/elfutils/0.153/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/chromium_org/third_party/npapi/npspy/extern/nspr/md/
sunos4.h 149 extern int ftruncate(int, off_t);
  /external/e2fsprogs/contrib/
fallocate.c 163 error = ftruncate(fd, length);
  /external/lldb/source/Core/
ConnectionSharedMemory.cpp 123 ::ftruncate (m_fd, size);
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 102 int ftruncate(int pFD, size_t pLength);
  /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))
  /system/core/libcutils/
ashmem-host.c 80 if (ftruncate(fd, size) != -1 && unlink(name) != -1) {
  /art/compiler/
elf_stripper.cc 129 int result = ftruncate(file->Fd(), offset);
  /development/tools/line_endings/
line_endings.c 91 ftruncate(fd, 0);
  /external/chromium_org/mojo/system/
raw_shared_buffer_posix.cc 26 // We assume that |size_t| and |off_t| (type for |ftruncate()|) fits in a
77 if (HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(num_bytes_))) != 0) {
78 PLOG(ERROR) << "ftruncate";
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 103 // Called by ftruncate()
104 int (*ftruncate)(const char* path, off_t, struct fuse_file_info*); member in struct:fuse_operations
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_kernel_proxy.h 32 MOCK_METHOD2(ftruncate, int(int, off_t));

Completed in 8531 milliseconds

1 2 3 4 5 6 7 8 910