Searched refs:ftruncate (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dftruncate.c8 int ftruncate(int fd, off_t length) { function
/external/valgrind/main/none/tests/mips32/
H A Dbug320057-mips32.stdout.exp2 ftruncate(fd, SZ); status: Success
H A Dbug320057-mips32.c24 ftruncate(fd, SZ);
25 DO(ftruncate(fd, SZ));
/external/elfutils/0.153/libelf/
H A Delf_update.c84 && 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/
H A Dsunos4.h149 extern int ftruncate(int, off_t);
/external/e2fsprogs/contrib/
H A Dfallocate.c163 error = ftruncate(fd, length);
/external/lldb/source/Core/
H A DConnectionSharedMemory.cpp123 ::ftruncate (m_fd, size);
/external/bison/darwin-lib/
H A Dunistd.h882 <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, "ftruncat
[all...]
/external/bison/lib/
H A Dunistd.in.h570 <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, "ftruncat
[all...]
/external/bison/linux-lib/
H A Dunistd.h882 <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, "ftruncat
[all...]
/external/chromium_org/mojo/embedder/
H A Dsimple_platform_shared_buffer_posix.cc26 // 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/
H A Dfuse.h220 // Called by ftruncate()
221 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/
H A Dmock_kernel_proxy.h33 MOCK_METHOD2(ftruncate, int(int, off_t));
/external/e2fsprogs/tests/progs/
H A Drandom_exercise.c110 ftruncate(fd, size);
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c109 ftruncate(fd, FILESIZE);
/external/valgrind/main/none/tests/
H A Dfaultstatus.c148 ftruncate(fd, FILESIZE);
/external/valgrind/main/none/tests/x86/
H A Dfaultstatus.c127 ftruncate(fd, FILESIZE);
/external/oprofile/libdb/
H A Ddb_manage.c77 if (ftruncate(data->fd, new_file_size))
225 if (ftruncate(data->fd, file_size)) {
/external/protobuf/
H A Dconfigure.ac83 AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])
/external/chromium_org/components/metrics/serialization/
H A Dserialization_utils.cc158 result = ftruncate(fd.get(), 0);
/external/libpcap/lbl/
H A Dos-sunos4.h89 int ftruncate(int, off_t);
/external/pdfium/core/src/fxcrt/
H A Dfxcrt_posix.cpp143 return !ftruncate(m_nFD, szFile);
/external/qemu/distrib/ext4_utils/src/
H A Dext4_utils.h43 #define ftruncate64 ftruncate
/external/tcpdump/lbl/
H A Dos-sunos4.h89 int ftruncate(int, off_t);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
H A Dfuse_fs.cc336 if (!fuse_ops_->ftruncate) {
337 LOG_ERROR("fuse_ops_->ftruncate is NULL.");
341 int result = fuse_ops_->ftruncate(path_.c_str(), length, &info_);

Completed in 2562 milliseconds

1234