Lines Matching refs:Entry
36 const SrcHeaderBlockEntry &Entry; member in llvm::pdb::__anon8e87f4e70111::NativeInjectedSource
41 NativeInjectedSource(const SrcHeaderBlockEntry &Entry, in NativeInjectedSource() argument
43 : Entry(Entry), Strings(Strings), File(File) {} in NativeInjectedSource()
45 uint32_t getCrc32() const override { return Entry.CRC; } in getCrc32()
46 uint64_t getCodeByteSize() const override { return Entry.FileSize; } in getCodeByteSize()
49 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI), in getFileName()
55 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI), in getObjectFileName()
61 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI), in getVirtualFileName()
66 uint32_t getCompression() const override { return Entry.Compression; } in getCompression()
71 cantFail(Strings.getStringForID(Entry.VFileNI), in getCode()
84 auto Data = readStreamData(**ExpectedFileStream, Entry.FileSize); in getCode()