Home | History | Annotate | Download | only in files

Lines Matching full:int64_t

52 int CallFtruncate(PlatformFile file, int64_t length) {
92 int CallFtruncate(PlatformFile file, int64_t length) {
117 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec;
119 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec;
121 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec;
124 int64_t last_modified_nsec = stat_info.st_mtime_nsec;
126 int64_t last_accessed_nsec = stat_info.st_atime_nsec;
128 int64_t creation_time_nsec = stat_info.st_ctime_nsec;
131 int64_t last_modified_nsec = stat_info.st_mtimespec.tv_nsec;
133 int64_t last_accessed_nsec = stat_info.st_atimespec.tv_nsec;
135 int64_t creation_time_nsec = stat_info.st_ctimespec.tv_nsec;
138 int64_t last_modified_nsec = 0;
140 int64_t last_accessed_nsec = 0;
142 int64_t creation_time_nsec = 0;
182 int64_t File::Seek(Whence whence, int64_t offset) {
191 static_assert(sizeof(int64_t) == sizeof(off64_t), "off64_t must be 64 bits");
195 static_assert(sizeof(int64_t) == sizeof(off_t), "off_t must be 64 bits");
201 int File::Read(int64_t offset, char* data, int size) {
244 int File::ReadNoBestEffort(int64_t offset, char* data, int size) {
261 int File::Write(int64_t offset, const char* data, int size) {
319 int64_t File::GetLength() {
331 bool File::SetLength(int64_t length) {