Home
last modified time | relevance | path

Searched refs:next_op_pos_ (Results 1 – 2 of 2) sorted by relevance

/system/core/fs_mgr/libsnapshot/
Dcow_writer.cpp170 next_op_pos_ = sizeof(header_) + header_.buffer_size; in InitPos()
173 next_data_pos_ = next_op_pos_ + cluster_size_; in InitPos()
175 next_data_pos_ = next_op_pos_ + sizeof(CowOperation); in InitPos()
254 if (lseek(fd_.get(), next_op_pos_, SEEK_SET) < 0) { in OpenForAppend()
400 auto continue_op_pos = next_op_pos_; in Finalize()
410 if (lseek(fd_.get(), next_op_pos_, SEEK_SET) < 0) { in Finalize()
428 if (lseek(fd_.get(), next_op_pos_, SEEK_SET) < 0) { in Finalize()
460 next_op_pos_ = continue_op_pos; in Finalize()
471 return next_op_pos_ + sizeof(footer_); in GetCowSize()
486 if (lseek(fd_.get(), next_op_pos_, SEEK_SET) < 0) { in WriteOperation()
[all …]
/system/core/fs_mgr/libsnapshot/include/libsnapshot/
Dcow_writer.h141 uint64_t next_op_pos_ = 0; variable