Searched refs:ftruncate64 (Results 1 – 25 of 30) sorted by relevance
12
/aosp12/system/update_engine/payload_consumer/ |
H A D | cow_writer_file_descriptor_unittest.cc | 43 ASSERT_EQ(ftruncate64(cow_device_file_.fd(), PARTITION_SIZE), 0) in SetUp() 46 ASSERT_EQ(ftruncate64(cow_source_file_.fd(), PARTITION_SIZE), 0) in SetUp()
|
/aosp12/bionic/libc/bionic/ |
H A D | ftruncate.cpp | 29 return ftruncate64(filedes, length); in ftruncate()
|
/aosp12/system/core/code_coverage/seccomp_policy/ |
H A D | code_coverage.x86.policy | 10 ftruncate64: 1
|
H A D | code_coverage.arm.policy | 10 ftruncate64: 1
|
H A D | code_coverage.policy.def | 36 ftruncate64: 1
|
/aosp12/system/core/libutils/include/utils/ |
H A D | Compat.h | 48 static inline int ftruncate64(int fd, off64_t length) { in ftruncate64() function
|
/aosp12/bionic/libc/include/ |
H A D | unistd.h | 253 int ftruncate(int __fd, off_t __length) __RENAME(ftruncate64); 266 int ftruncate64(int __fd, off64_t __length);
|
/aosp12/frameworks/av/services/mediacodec/seccomp_policy/ |
H A D | mediacodec-arm.policy | 18 ftruncate64: 1
|
H A D | mediacodec-arm64.policy | 18 ftruncate64: 1
|
H A D | mediacodec-x86.policy | 64 ftruncate64: 1
|
H A D | mediacodec-x86_64.policy | 64 ftruncate64: 1
|
H A D | mediaswcodec-x86.policy | 64 ftruncate64: 1
|
H A D | mediaswcodec-x86_64.policy | 64 ftruncate64: 1
|
H A D | mediaswcodec-arm.policy | 26 ftruncate64: 1
|
/aosp12/system/extras/ext4_utils/include/ext4_utils/ |
H A D | ext4_utils.h | 43 #define ftruncate64 ftruncate macro
|
/aosp12/frameworks/av/media/codec2/hidl/services/seccomp_policy/ |
H A D | android.hardware.media.c2@1.2-default-x86.policy | 63 ftruncate64: 1
|
H A D | android.hardware.media.c2@1.2-default-x86_64.policy | 63 ftruncate64: 1
|
H A D | android.hardware.media.c2@1.2-default-arm.policy | 26 ftruncate64: 1
|
/aosp12/system/core/libsparse/ |
H A D | output_file.cpp | 43 #define ftruncate64 ftruncate macro 48 #define ftruncate64 ftruncate macro 133 ret = ftruncate64(outn->fd, len); in file_pad()
|
/aosp12/art/compiler/utils/ |
H A D | swap_space.cc | 150 int result = TEMP_FAILURE_RETRY(ftruncate64(fd_, size_ + next_part)); in NewFileChunk()
|
/aosp12/bionic/docs/ |
H A D | 32-bit-abi.md | 13 to make `off64_t` and corresponding functions such as `ftruncate64` available.
|
/aosp12/art/libartbase/base/unix_file/ |
H A D | fd_file.cc | 374 int rc = TEMP_FAILURE_RETRY(ftruncate64(fd_, new_length)); in SetLength()
|
/aosp12/bionic/libc/ |
H A D | SYSCALLS.TXT | 169 int ftruncate64(int, off64_t) lp32 170 int ftruncate|ftruncate64(int, off_t) lp64
|
/aosp12/system/extras/f2fs_utils/ |
H A D | f2fs_sparseblock.c | 603 ftruncate64(outfd, info->total_blocks * F2FS_BLKSIZE); in main()
|
/aosp12/bionic/tests/ |
H A D | unistd_test.cpp | 206 TEST(UNISTD_TEST, ftruncate64) { in TEST() argument 208 ASSERT_EQ(0, ftruncate64(tf.fd, 123)); in TEST()
|
12