Lines Matching refs:Entry
39 const SrcHeaderBlockEntry &Entry; member in llvm::pdb::__anonf9d601880111::NativeInjectedSource
44 NativeInjectedSource(const SrcHeaderBlockEntry &Entry, in NativeInjectedSource() argument
46 : Entry(Entry), Strings(Strings), File(File) {} in NativeInjectedSource()
48 uint32_t getCrc32() const override { return Entry.CRC; } in getCrc32()
49 uint64_t getCodeByteSize() const override { return Entry.FileSize; } in getCodeByteSize()
52 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI), in getFileName()
58 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI), in getObjectFileName()
64 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI), in getVirtualFileName()
69 uint32_t getCompression() const override { return Entry.Compression; } in getCompression()
74 cantFail(Strings.getStringForID(Entry.VFileNI), in getCode()
87 auto Data = readStreamData(**ExpectedFileStream, Entry.FileSize); in getCode()