Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/extractortool/src/
Dzip_file.cpp111 CentralDirEntry directoryEntry; in ParseOneEntry() local
112 …if (memcpy_s(&directoryEntry, sizeof(CentralDirEntry), entryPtr, sizeof(CentralDirEntry)) != EOK) { in ParseOneEntry()
116 if (directoryEntry.signature != CENTRAL_SIGNATURE) { in ParseOneEntry()
121 …size_t fileLength = (directoryEntry.nameSize >= MAX_FILE_NAME) ? (MAX_FILE_NAME - 1) : directoryEn… in ParseOneEntry()
127 ZipEntry currentEntry(directoryEntry); in ParseOneEntry()
131 entryPtr += directoryEntry.nameSize + directoryEntry.extraSize + directoryEntry.commentSize; in ParseOneEntry()