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

  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
7zFile.c 174 DWORD moveMethod;
179 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
180 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
181 case SZ_SEEK_END: moveMethod = FILE_END; break;
184 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
196 int moveMethod;
200 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
201 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
202 case SZ_SEEK_END: moveMethod = SEEK_END; break;
205 res = fseek(p->file, (long)*pos, moveMethod);
    [all...]
  /external/lzma/C/
7zFile.c 174 DWORD moveMethod;
179 case SZ_SEEK_SET: moveMethod = FILE_BEGIN; break;
180 case SZ_SEEK_CUR: moveMethod = FILE_CURRENT; break;
181 case SZ_SEEK_END: moveMethod = FILE_END; break;
184 value.LowPart = SetFilePointer(p->handle, value.LowPart, &value.HighPart, moveMethod);
196 int moveMethod;
200 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
201 case SZ_SEEK_CUR: moveMethod = SEEK_CUR; break;
202 case SZ_SEEK_END: moveMethod = SEEK_END; break;
205 res = fseek(p->file, (long)*pos, moveMethod);
    [all...]
  /external/lzma/CPP/7zip/Common/
CWrappers.cpp 113 UInt32 moveMethod;
116 case SZ_SEEK_SET: moveMethod = STREAM_SEEK_SET; break;
117 case SZ_SEEK_CUR: moveMethod = STREAM_SEEK_CUR; break;
118 case SZ_SEEK_END: moveMethod = STREAM_SEEK_END; break;
122 p->Res = p->Stream->Seek(*offset, moveMethod, &newPosition);

Completed in 84 milliseconds