Lines Matching defs:fileName
23 void Snapshot::Serialize(const CString &fileName)
32 Serialize(root.GetTaggedObject(), nullptr, fileName);
35 void Snapshot::Serialize(TaggedObject *objectHeader, const JSPandaFile *jsPandaFile, const CString &fileName)
38 if (!RealPath(std::string(fileName), realPath, false)) {
64 void Snapshot::Serialize(uintptr_t startAddr, size_t size, const CString &fileName)
67 if (!RealPath(std::string(fileName), realPath, false)) {
92 void Snapshot::SerializeBuiltins(const CString &fileName)
95 if (!RealPath(std::string(fileName), realPath, false)) {
196 (std::string fileName, uint8_t **buff, size_t *buffSize)> ReadAOTCallBack, bool isBuiltins)
203 std::string fileName = std::string(snapshotFile);
207 size_t found = fileName.find_last_of("/");
209 fileName = fileName.substr(found + 1);
212 LOG_ECMA(INFO) << "Call JsAotReader to load: " << fileName;
213 if (ReadAOTCallBack(fileName, &buff, &buffSize)) {