HomeSort by relevance Sort by last modified time
    Searched refs:moveMethod (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/lzma_sdk/
7zFile.c 172 DWORD moveMethod;
177 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
178 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
179 case SZ_SEEK_END: moveMethod = FILE_END; break;
182 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
194 int moveMethod;
198 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
199 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
200 case SZ_SEEK_END: moveMethod = SEEK_END; break;
203 res = fseek(p->file, (long)*pos, moveMethod);
    [all...]
  /external/lzma/C/
7zFile.c 172 DWORD moveMethod;
177 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
178 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
179 case SZ_SEEK_END: moveMethod = FILE_END; break;
182 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
194 int moveMethod;
198 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
199 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
200 case SZ_SEEK_END: moveMethod = SEEK_END; break;
203 res = fseek(p->file, (long)*pos, moveMethod);
    [all...]
  /external/lzma/CPP/Common/
C_FileIO.h 26 off_t Seek(off_t distanceToMove, int moveMethod) const;
C_FileIO.cpp 41 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const
43 return ::lseek(_handle, distanceToMove, moveMethod);
  /external/chromium_org/chrome/installer/util/
lzma_util.cc 50 DWORD moveMethod;
53 moveMethod = FILE_BEGIN;
56 moveMethod = FILE_CURRENT;
59 moveMethod = FILE_END;
65 moveMethod);
  /external/lzma/CPP/7zip/Common/
CWrappers.cpp 109 UInt32 moveMethod;
112 case SZ_SEEK_SET: moveMethod = STREAM_SEEK_SET; break;
113 case SZ_SEEK_CUR: moveMethod = STREAM_SEEK_CUR; break;
114 case SZ_SEEK_END: moveMethod = STREAM_SEEK_END; break;
118 p->Res = p->Stream->Seek(*offset, moveMethod, &newPosition);
  /external/lzma/CPP/Windows/
FileIO.cpp 193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
196 if (IsDeviceFile && LengthDefined && moveMethod == FILE_END)
199 moveMethod = FILE_BEGIN;
205 value.LowPart = ::SetFilePointer(_handle, value.LowPart, &value.HighPart, moveMethod);
FileIO.h 53 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const;

Completed in 1346 milliseconds