/system/core/libutils/include/utils/ |
D | Compat.h | 26 typedef off_t off64_t; typedef 28 static inline off64_t lseek64(int fd, off64_t offset, int whence) { in lseek64() 32 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) { in pread64() 36 static inline ssize_t pwrite64(int fd, const void* buf, size_t nbytes, off64_t offset) { in pwrite64() 40 static inline int ftruncate64(int fd, off64_t length) { in ftruncate64()
|
D | FileMap.h | 67 off64_t offset, size_t length, bool readOnly); 89 off64_t getDataOffset(void) const { return mDataOffset; } in getDataOffset() 116 off64_t mDataOffset; // offset used when map was created
|
/system/vold/ |
D | EncryptInplace.h | 27 int cryptfs_enable_inplace(const char* crypto_blkdev, const char* real_blkdev, off64_t size, 28 off64_t* size_already_done, off64_t tot_size, 29 off64_t previously_encrypted_upto, bool set_progress_properties);
|
D | EncryptInplace.cpp | 61 off64_t numblocks; 62 off64_t one_pct, cur_pct, new_pct; 63 off64_t blocks_already_done, tot_numblocks; 64 off64_t used_blocks_already_done, tot_used_blocks; 68 off64_t offset; 70 off64_t last_written_sector; 104 off64_t remaining_blocks = data->tot_used_blocks - data->used_blocks_already_done; in update_progress() 125 static off64_t offset = -1; in log_progress() 140 offset = data->offset + (off64_t)data->count * info.block_size; in log_progress() 174 off64_t ret; in encrypt_groups() [all …]
|
D | secdiscard.cpp | 49 bool overwrite_with_zeros(int fd, off64_t start, off64_t length); 170 bool overwrite_with_zeros(int fd, off64_t start, off64_t length) { in overwrite_with_zeros() 178 size_t wlen = static_cast<size_t>(std::min(static_cast<off64_t>(sizeof(buf)), length)); in overwrite_with_zeros()
|
/system/core/libziparchive/ |
D | zip_archive_private.h | 99 : has_fd_(false), fd_(-1), base_ptr_(address), data_length_(static_cast<off64_t>(length)) {} in MappedZipFile() 107 off64_t GetFileLength() const; 109 bool ReadAtOffset(uint8_t* buf, size_t len, off64_t off) const; 121 const off64_t data_length_; 132 void Initialize(void* map_base_ptr, off64_t cd_start_offset, size_t cd_size); 165 off64_t directory_offset; 183 bool InitializeCentralDirectory(off64_t cd_start_offset, size_t cd_size);
|
D | zip_archive.cc | 230 off64_t file_length, off64_t read_amount, in MapCentralDirectory0() 232 const off64_t search_start = file_length - read_amount; in MapCentralDirectory0() 261 const off64_t eocd_offset = search_start + i; in MapCentralDirectory0() 267 const off64_t calculated_length = eocd_offset + sizeof(EocdRecord) + eocd->comment_length; in MapCentralDirectory0() 278 if (static_cast<off64_t>(eocd->cd_start_offset) + eocd->cd_size > eocd_offset) { in MapCentralDirectory0() 298 if (!archive->InitializeCentralDirectory(static_cast<off64_t>(eocd->cd_start_offset), in MapCentralDirectory0() 322 off64_t file_length = archive->mapped_zip.GetFileLength(); in MapCentralDirectory() 327 if (file_length > static_cast<off64_t>(0xffffffff)) { in MapCentralDirectory() 332 if (file_length < static_cast<off64_t>(sizeof(EocdRecord))) { in MapCentralDirectory() 349 off64_t read_amount = kMaxEOCDSearch; in MapCentralDirectory() [all …]
|
/system/core/base/ |
D | mapped_file.cpp | 24 static off64_t InitPageSize() { in InitPageSize() 34 std::unique_ptr<MappedFile> MappedFile::FromFd(int fd, off64_t offset, size_t length, int prot) { in FromFd() 35 static off64_t page_size = InitPageSize(); in FromFd() 37 off64_t file_offset = offset - slop; in FromFd() 38 off64_t file_length = length + slop; in FromFd()
|
/system/core/fs_mgr/include_fstab/fstab/ |
D | fstab.h | 42 off64_t length = 0; 47 off64_t zram_size = 0; 48 off64_t reserved_size = 0; 51 off64_t erase_blk_size = 0; 52 off64_t logical_blk_size = 0;
|
/system/update_engine/payload_consumer/ |
D | cached_file_descriptor_unittest.cc | 120 EXPECT_EQ(cfd_->Seek(start, SEEK_SET), static_cast<off64_t>(start)); in TEST_F() 134 static_cast<off64_t>(kFileSize - 1)); in TEST_F() 135 EXPECT_EQ(cfd_->Seek(kFileSize, SEEK_SET), static_cast<off64_t>(kFileSize)); in TEST_F() 137 static_cast<off64_t>(kFileSize + 1)); in TEST_F() 143 static_cast<off64_t>(kFileSize - 1)); in TEST_F() 144 EXPECT_EQ(cfd_->Seek(1, SEEK_CUR), static_cast<off64_t>(kFileSize)); in TEST_F() 145 EXPECT_EQ(cfd_->Seek(1, SEEK_CUR), static_cast<off64_t>(kFileSize + 1)); in TEST_F() 159 off64_t seek = 10; in TEST_F() 172 off64_t seek = 100; in TEST_F() 188 off64_t seek = 100; in TEST_F()
|
D | fake_file_descriptor.h | 61 off64_t Seek(off64_t offset, int whence) override; 112 off64_t size_{std::numeric_limits<off64_t>::max()};
|
D | file_descriptor.h | 73 virtual off64_t Seek(off64_t offset, int whence) = 0; 120 off64_t Seek(off64_t offset, int whence) override;
|
D | mtd_file_descriptor.h | 44 off64_t Seek(off64_t offset, int whence) override; 80 off64_t Seek(off64_t offset, int whence) override;
|
D | cached_file_descriptor.cc | 29 off64_t CachedFileDescriptor::Seek(off64_t offset, int whence) { in Seek() 34 off64_t next_offset = whence == SEEK_SET ? offset : offset_ + offset; in Seek()
|
D | cached_file_descriptor.h | 49 off64_t Seek(off64_t offset, int whence) override; 69 off64_t offset_{0};
|
D | fec_file_descriptor.h | 43 off64_t Seek(off64_t offset, int whence) override;
|
D | extent_writer.cc | 48 const off64_t offset = in Write() 51 static_cast<off64_t>(-1)); in Write()
|
D | fec_file_descriptor.cc | 55 off64_t FecFileDescriptor::Seek(off64_t offset, int whence) { in Seek()
|
D | fake_file_descriptor.cc | 55 off64_t FakeFileDescriptor::Seek(off64_t offset, int whence) { in Seek()
|
D | mtd_file_descriptor.cc | 152 off64_t MtdFileDescriptor::Seek(off64_t offset, int whence) { in Seek() 229 off64_t UbiFileDescriptor::Seek(off64_t offset, int whence) { in Seek()
|
/system/core/libmeminfo/ |
D | pageacct.cpp | 31 static inline off64_t pfn_to_idle_bitmap_offset(uint64_t pfn) { in pfn_to_idle_bitmap_offset() 32 return static_cast<off64_t>((pfn >> 6) << 3); in pfn_to_idle_bitmap_offset() 117 off64_t offset = pfn_to_idle_bitmap_offset(pfn); in MarkPageIdle() 130 off64_t offset = pfn_to_idle_bitmap_offset(pfn); in GetPageIdle()
|
/system/core/libsparse/ |
D | img2simg.cpp | 37 #define off64_t off_t macro 50 off64_t len; in main()
|
/system/extras/tests/ext4/ |
D | rand_emmc_perf.c | 41 off64_t offset; 110 static void stats_test(int fd, int write_mode, off64_t max_blocks, int stats_count, in stats_test() 146 static void perf_test(int fd, int write_mode, off64_t max_blocks) in perf_test() 191 off64_t max_blocks; in main()
|
/system/core/base/include/android-base/ |
D | off64_t.h | 21 typedef off_t off64_t; typedef
|
/system/core/libziparchive/include/ziparchive/ |
D | zip_writer.h | 80 off64_t local_file_header_offset; 177 off64_t current_offset_;
|