HomeSort by: relevance | last modified time | path
    Searched refs:Session (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeExeSymbol.cpp 23 static DbiStream *getDbiStreamPtr(NativeSession &Session) {
24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream();
32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId)
33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId),
34 Dbi(getDbiStreamPtr(Session)) {}
40 return std::unique_ptr<IPDBEnumSymbols>(new NativeEnumModules(Session));
44 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ARRAY);
46 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ENUM);
48 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_POINTER);
50 return Session.getSymbolCache().createTypeEnumerator
    [all...]
NativeTypeArray.cpp 19 NativeTypeArray::NativeTypeArray(NativeSession &Session, SymIndexId Id,
22 : NativeRawSymbol(Session, PDB_SymType::ArrayType, Id), Record(Record),
32 dumpSymbolIdField(OS, "elementTypeId", getTypeId(), Indent, Session,
35 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
46 return Session.getSymbolCache().findSymbolByTypeIndex(Record.getIndexType());
57 Session.getSymbolCache().getNativeSymbolById(getTypeId());
62 return Session.getSymbolCache().findSymbolByTypeIndex(
NativeEnumModules.cpp 23 : Session(PDBSession), Index(Index) {}
26 return Session.getSymbolCache().getNumCompilands();
31 return Session.getSymbolCache().getOrCreateCompiland(N);
NativeSourceFile.cpp 15 NativeSourceFile::NativeSourceFile(NativeSession &Session, uint32_t FileId,
17 : Session(Session), FileId(FileId), Checksum(Checksum) {}
20 auto ST = Session.getPDBFile().getStringTable();
NativeTypeTypedef.cpp 7 NativeTypeTypedef::NativeTypeTypedef(NativeSession &Session, SymIndexId Id,
9 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id),
19 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
28 return Session.getSymbolCache().findSymbolByTypeIndex(Record.Type);
NativeEnumGlobals.cpp 25 : Index(0), Session(PDBSession) {
26 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream());
27 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream());
46 Session.getSymbolCache().getOrCreateGlobalSymbolByOffset(MatchOffsets[N]);
47 return Session.getSymbolCache().getSymbolById(Id);
NativeLineNumber.cpp 14 NativeLineNumber::NativeLineNumber(const NativeSession &Session,
19 : Session(Session), Line(Line), ColumnNumber(ColumnNumber),
38 return Session.getRVAFromSectOffset(Section, Offset);
42 return Session.getVAFromSectOffset(Section, Offset);
NativeTypeFunctionSig.cpp 28 NativeTypeFunctionArg(NativeSession &Session,
30 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0),
37 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
48 NativeEnumFunctionArgs(NativeSession &Session,
50 : Session(Session), TypeEnumerator(std::move(TypeEnumerator)) {}
68 auto NTFA = std::make_unique<NativeTypeFunctionArg>(Session, std::move(S));
69 return PDBSymbol::create(Session, std::move(NTFA));
71 NativeSession &Session;
76 NativeTypeFunctionSig::NativeTypeFunctionSig(NativeSession &Session,
    [all...]
NativeCompilandSymbol.cpp 17 NativeCompilandSymbol::NativeCompilandSymbol(NativeSession &Session,
20 : NativeRawSymbol(Session, PDB_SymType::Compiland, SymbolId), Module(MI) {}
31 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
NativeTypeVTShape.cpp 7 NativeTypeVTShape::NativeTypeVTShape(NativeSession &Session, SymIndexId Id,
10 : NativeRawSymbol(Session, PDB_SymType::VTableShape, Id), TI(TI),
20 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDB.cpp 24 std::unique_ptr<IPDBSession> &Session) {
27 return NativeSession::createFromPdbPath(Path, Session);
30 return DIASession::createFromPdb(Path, Session);
37 std::unique_ptr<IPDBSession> &Session) {
43 return NativeSession::createFromPdbPath(PdbPath.get(), Session);
47 return DIASession::createFromExe(Path, Session);
PDBSymbolTypeFunctionSig.cpp 31 : Session(PDBSession),
36 : Session(PDBSession), Enumerator(std::move(ArgEnumerator)) {}
46 return Session.getSymbolById(FunctionArgSymbol->getTypeId());
53 return Session.getSymbolById(FunctionArgSymbol->getTypeId());
59 const IPDBSession &Session;
66 return std::make_unique<FunctionArgEnumerator>(Session, *this);
PDBSymbolData.cpp 25 return Session.findLineNumbersByRVA(RVA, Len);
28 return Session.findLineNumbersBySectOffset(
44 Session.addressForRVA(RVA, DataSection, DataOffset);
48 if (auto SecContribs = Session.getSectionContribs()) {
58 while (auto LexParent = Session.getSymbolById(LexParentId)) {
  /src/crypto/external/bsd/openssh/dist/
session.h 1 /* $NetBSD: session.h,v 1.10 2023/07/26 17:58:15 christos Exp $ */
2 /* $OpenBSD: session.h,v 1.37 2023/01/06 02:39:59 djm Exp $ */
33 typedef struct Session Session;
34 struct Session {
77 void session_destroy_all(struct ssh *, void (*)(Session *));
78 void session_pty_cleanup2(Session *);
80 Session *session_new(void);
81 Session *session_by_tty(char *);
82 void session_close(struct ssh *, Session *);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDB.h 23 std::unique_ptr<IPDBSession> &Session);
26 std::unique_ptr<IPDBSession> &Session);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumModules.h 21 NativeEnumModules(NativeSession &Session, uint32_t Index = 0);
29 NativeSession &Session;
NativeEnumTypes.h 26 NativeEnumTypes(NativeSession &Session,
30 NativeEnumTypes(NativeSession &Session,
41 NativeSession &Session;
NativeEnumGlobals.h 25 NativeEnumGlobals(NativeSession &Session,
36 NativeSession &Session;
NativeEnumSymbols.h 25 NativeEnumSymbols(NativeSession &Session, std::vector<SymIndexId> Symbols);
35 NativeSession &Session;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumSymbols.cpp 19 : Session(PDBSession), Enumerator(DiaEnumerator) {}
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
33 return std::unique_ptr<PDBSymbol>(PDBSymbol::create(Session, std::move(RawSymbol)));
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
44 PDBSymbol::create(Session, std::move(RawSymbol)));
DIAEnumSectionContribs.cpp 19 : Session(PDBSession), Enumerator(DiaEnumerator) {}
33 new DIASectionContrib(Session, Item));
43 new DIASectionContrib(Session, Item));
DIAEnumSourceFiles.cpp 18 : Session(PDBSession), Enumerator(DiaEnumerator) {}
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
DIASession.cpp 85 DIASession::DIASession(CComPtr<IDiaSession> DiaSession) : Session(DiaSession) {}
88 std::unique_ptr<IPDBSession> &Session) {
109 Session.reset(new DIASession(DiaSession));
114 std::unique_ptr<IPDBSession> &Session) {
134 Session.reset(new DIASession(DiaSession));
140 bool success = (S_OK == Session->get_loadAddress(&LoadAddress));
145 return (S_OK == Session->put_loadAddress(Address));
150 if (S_OK != Session->get_globalScope(&GlobalScope))
163 if (S_OK == Session->addressForVA(VA, &ArgSection, &ArgOffset)) {
174 if (S_OK == Session->addressForRVA(RVA, &ArgSection, &ArgOffset))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAEnumSymbols.h 22 explicit DIAEnumSymbols(const DIASession &Session,
31 const DIASession &Session;
DIASourceFile.h 21 explicit DIASourceFile(const DIASession &Session,
34 const DIASession &Session;

Completed in 27 milliseconds

1 2 3 4