Searched refs:rawheapFile (Results 1 – 1 of 1) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/ |
| D | rawheap_translate.cpp | 25 std::ifstream rawheapFile; in Translate() local 26 if (!FileCheckAndOpenBinary(rawheapPath, rawheapFile, fileSize)) { in Translate() 31 if (!ParseMetaData(rawheapFile, fileSize) || in Translate() 32 !ReadSectionInfo(rawheapFile, fileSize, sections) || in Translate() 33 !ReadVersion(rawheapFile, 0, sections[0]) || in Translate() 34 !ReadObjTableBySection(rawheapFile, sections) || in Translate() 35 !ReadStringTable(rawheapFile, sections[2], sections[3]) || // 2: str offset, 3: str size in Translate() 36 !ReadRootTable(rawheapFile, sections[0], sections[1])) { in Translate()
|