Home | History | Annotate | Download | only in unix_file

Lines Matching full:int64_t

154 int64_t FdFile::Read(char* buf, int64_t byte_count, int64_t offset) const {
163 int FdFile::SetLength(int64_t new_length) {
174 int64_t FdFile::GetLength() const {
180 int64_t FdFile::Write(const char* buf, int64_t byte_count, int64_t offset) {
265 bool FdFile::Copy(FdFile* input_file, int64_t offset, int64_t size) {
269 if (offset < 0 || static_cast<int64_t>(off) != offset ||
270 size < 0 || static_cast<int64_t>(sz) != size ||