Searched refs:Session (Results 1 - 25 of 93) sorted by relevance

1234

/openbsd-current/usr.bin/ssh/
H A Dsession.h30 typedef struct Session Session; typedef in typeref:struct:Session
31 struct Session { struct
74 void session_destroy_all(struct ssh *, void (*)(Session *));
75 void session_pty_cleanup2(Session *);
77 Session *session_new(void);
78 Session *session_by_tty(char *);
79 void session_close(struct ssh *, Session *);
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp23 static DbiStream *getDbiStreamPtr(NativeSession &Session) { argument
24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream();
32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) argument
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
[all...]
H A DNativeTypeArray.cpp20 NativeTypeArray::NativeTypeArray(NativeSession &Session, SymIndexId Id, argument
23 : NativeRawSymbol(Session, PDB_SymType::ArrayType, Id), Record(Record),
33 dumpSymbolIdField(OS, "elementTypeId", getTypeId(), Indent, Session,
36 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
47 return Session.getSymbolCache().findSymbolByTypeIndex(Record.getIndexType());
58 Session.getSymbolCache().getNativeSymbolById(getTypeId());
63 return Session.getSymbolCache().findSymbolByTypeIndex(
H A DNativeEnumModules.cpp20 : Session(PDBSession), Index(Index) {}
23 return Session.getSymbolCache().getNumCompilands();
28 return Session.getSymbolCache().getOrCreateCompiland(N);
H A DNativeTypeTypedef.cpp9 NativeTypeTypedef::NativeTypeTypedef(NativeSession &Session, SymIndexId Id, argument
11 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id),
21 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
30 return Session.getSymbolCache().findSymbolByTypeIndex(Record.Type);
H A DNativeSourceFile.cpp17 NativeSourceFile::NativeSourceFile(NativeSession &Session, uint32_t FileId, argument
19 : Session(Session), FileId(FileId), Checksum(Checksum) {}
22 auto ST = Session.getPDBFile().getStringTable();
H A DNativeTypeFunctionSig.cpp29 NativeTypeFunctionArg(NativeSession &Session, argument
31 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0),
38 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
49 NativeEnumFunctionArgs(NativeSession &Session, argument
51 : Session(Session), TypeEnumerator(std::move(TypeEnumerator)) {}
69 auto NTFA = std::make_unique<NativeTypeFunctionArg>(Session, std::move(S));
70 return PDBSymbol::create(Session, std::move(NTFA));
72 NativeSession &Session; member in class:__anon2261::NativeEnumFunctionArgs
77 NativeTypeFunctionSig::NativeTypeFunctionSig(NativeSession &Session, argument
84 NativeTypeFunctionSig( NativeSession &Session, SymIndexId Id, codeview::TypeIndex Index, codeview::MemberFunctionRecord MemberFunc) argument
[all...]
H A DNativeEnumGlobals.cpp27 : Index(0), Session(PDBSession) {
28 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream());
29 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream());
48 Session.getSymbolCache().getOrCreateGlobalSymbolByOffset(MatchOffsets[N]);
49 return Session.getSymbolCache().getSymbolById(Id);
H A DNativeLineNumber.cpp15 NativeLineNumber::NativeLineNumber(const NativeSession &Session, argument
20 : Session(Session), Line(Line), ColumnNumber(ColumnNumber),
39 return Session.getRVAFromSectOffset(Section, Offset);
43 return Session.getVAFromSectOffset(Section, Offset);
H A DNativeTypeVTShape.cpp10 NativeTypeVTShape::NativeTypeVTShape(NativeSession &Session, SymIndexId Id, argument
13 : NativeRawSymbol(Session, PDB_SymType::VTableShape, Id), TI(TI),
23 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
H A DNativeCompilandSymbol.cpp15 NativeCompilandSymbol::NativeCompilandSymbol(NativeSession &Session, argument
18 : NativeRawSymbol(Session, PDB_SymType::Compiland, SymbolId), Module(MI) {}
29 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp23 std::unique_ptr<IPDBSession> &Session) {
26 return NativeSession::createFromPdbPath(Path, Session);
29 return DIASession::createFromPdb(Path, Session);
36 std::unique_ptr<IPDBSession> &Session) {
42 return NativeSession::createFromPdbPath(PdbPath.get(), Session);
46 return DIASession::createFromExe(Path, Session);
22 loadDataForPDB(PDB_ReaderType Type, StringRef Path, std::unique_ptr<IPDBSession> &Session) argument
35 loadDataForEXE(PDB_ReaderType Type, StringRef Path, std::unique_ptr<IPDBSession> &Session) argument
H A DPDBSymbolTypeFunctionSig.cpp31 : 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; member in class:__anon2504::FunctionArgEnumerator
66 return std::make_unique<FunctionArgEnumerator>(Session, *this);
H A DPDBSymbolData.cpp24 return Session.findLineNumbersByRVA(RVA, Len);
27 return Session.findLineNumbersBySectOffset(
43 Session.addressForRVA(RVA, DataSection, DataOffset);
47 if (auto SecContribs = Session.getSectionContribs()) {
57 while (auto LexParent = Session.getSymbolById(LexParentId)) {
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DPDB.h23 std::unique_ptr<IPDBSession> &Session);
26 std::unique_ptr<IPDBSession> &Session);
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeEnumModules.h21 NativeEnumModules(NativeSession &Session, uint32_t Index = 0);
29 NativeSession &Session; member in class:llvm::pdb::NativeEnumModules
H A DNativeEnumTypes.h29 NativeEnumTypes(NativeSession &Session,
33 NativeEnumTypes(NativeSession &Session,
44 NativeSession &Session; member in class:llvm::pdb::NativeEnumTypes
H A DNativeEnumGlobals.h25 NativeEnumGlobals(NativeSession &Session,
36 NativeSession &Session; member in class:llvm::pdb::NativeEnumGlobals
/openbsd-current/gnu/llvm/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.h1 //===---- llvm-jitlink.h - Session and format-specific decls ----*- C++ -*-===//
9 // llvm-jitlink Session class and tool utilities.
31 struct Session;
33 struct Session { struct in namespace:llvm
40 ~Session();
42 static Expected<std::unique_ptr<Session>> Create(Triple TT);
87 Session(std::unique_ptr<orc::ExecutorProcessControl> EPC, Error &Err);
91 Error registerELFGraphInfo(Session &S, jitlink::LinkGraph &G);
94 Error registerMachOGraphInfo(Session &S, jitlink::LinkGraph &G);
97 Error registerCOFFGraphInfo(Session
[all...]
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumSymbols.cpp19 : 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)));
H A DDIAEnumSectionContribs.cpp19 : Session(PDBSession), Enumerator(DiaEnumerator) {}
33 new DIASectionContrib(Session, Item));
43 new DIASectionContrib(Session, Item));
H A DDIAEnumSourceFiles.cpp18 : Session(PDBSession), Enumerator(DiaEnumerator) {}
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
H A DDIASession.cpp85 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
87 createFromPdb(StringRef Path, std::unique_ptr<IPDBSession> &Session) argument
113 createFromExe(StringRef Path, std::unique_ptr<IPDBSession> &Session) argument
378 getTableEnumerator(IDiaSession &Session) argument
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIAEnumSymbols.h22 explicit DIAEnumSymbols(const DIASession &Session,
31 const DIASession &Session; member in class:llvm::pdb::DIAEnumSymbols
H A DDIASourceFile.h21 explicit DIASourceFile(const DIASession &Session,
34 const DIASession &Session; member in class:llvm::pdb::DIASourceFile

Completed in 111 milliseconds

1234