Home
last modified time | relevance | path

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

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp23 static DbiStream *getDbiStreamPtr(NativeSession &Session) { in getDbiStreamPtr() argument
24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream(); in getDbiStreamPtr()
32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) in NativeExeSymbol() argument
33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol()
34 Dbi(getDbiStreamPtr(Session)) {} in NativeExeSymbol()
40 return std::unique_ptr<IPDBEnumSymbols>(new NativeEnumModules(Session)); in findChildren()
44 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ARRAY); in findChildren()
46 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ENUM); in findChildren()
48 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_POINTER); in findChildren()
50 return Session in findChildren()
[all...]
H A DNativeTypeFunctionSig.cpp28 NativeTypeFunctionArg(NativeSession &Session, in NativeTypeFunctionArg() argument
30 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0), in NativeTypeFunctionArg()
37 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session,
48 NativeEnumFunctionArgs(NativeSession &Session, in NativeEnumFunctionArgs() argument
50 : Session(Session), TypeEnumerator(std::move(TypeEnumerator)) {} in NativeEnumFunctionArgs()
68 auto NTFA = std::make_unique<NativeTypeFunctionArg>(Session, std::move(S)); in wrap()
69 return PDBSymbol::create(Session, std::move(NTFA)); in wrap()
71 NativeSession &Session; member in __anon24163::NativeEnumFunctionArgs
76 NativeTypeFunctionSig::NativeTypeFunctionSig(NativeSession &Session, in NativeTypeFunctionSig() argument
83 NativeTypeFunctionSig( NativeSession &Session, SymIndexId Id, codeview::TypeIndex Index, codeview::MemberFunctionRecord MemberFunc) NativeTypeFunctionSig() argument
[all...]
H A DNativeTypeEnum.cpp41 NativeEnumEnumEnumerators(NativeSession &Session,
55 NativeSession &Session; member in __anon24162::NativeEnumEnumEnumerators
64 NativeSession &Session, const NativeTypeEnum &ClassParent) in NativeEnumEnumEnumerators()
65 : Session(Session), ClassParent(ClassParent) { in NativeEnumEnumEnumerators()
66 TpiStream &Tpi = cantFail(Session.getPDBFile().getPDBTpiStream()); in NativeEnumEnumEnumerators()
99 SymIndexId Id = Session.getSymbolCache() in getChildAtIndex()
103 return Session.getSymbolCache().getSymbolById(Id); in getChildAtIndex()
115 NativeTypeEnum::NativeTypeEnum(NativeSession &Session, SymIndexId Id, in NativeTypeEnum() argument
117 : NativeRawSymbol(Session, PDB_SymTyp in NativeTypeEnum()
63 NativeEnumEnumEnumerators( NativeSession &Session, const NativeTypeEnum &ClassParent) NativeEnumEnumEnumerators() argument
120 NativeTypeEnum(NativeSession &Session, SymIndexId Id, NativeTypeEnum &UnmodifiedType, codeview::ModifierRecord Modifier) NativeTypeEnum() argument
[all...]
H A DNativeTypeArray.cpp19 NativeTypeArray::NativeTypeArray(NativeSession &Session, SymIndexId Id, in NativeTypeArray() argument
22 : NativeRawSymbol(Session, PDB_SymType::ArrayType, Id), Record(Record), in NativeTypeArray()
32 dumpSymbolIdField(OS, "elementTypeId", getTypeId(), Indent, Session, in dump()
35 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
46 return Session.getSymbolCache().findSymbolByTypeIndex(Record.getIndexType()); in getArrayIndexTypeId()
57 Session.getSymbolCache().getNativeSymbolById(getTypeId()); in getCount()
62 return Session.getSymbolCache().findSymbolByTypeIndex( in getTypeId()
H A DNativeTypePointer.cpp19 NativeTypePointer::NativeTypePointer(NativeSession &Session, SymIndexId Id, in NativeTypePointer() argument
21 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI) { in NativeTypePointer()
26 NativeTypePointer::NativeTypePointer(NativeSession &Session, SymIndexId Id, in NativeTypePointer() argument
29 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI), in NativeTypePointer()
40 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session, in dump()
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
47 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
75 return Session.getSymbolCache().findSymbolByTypeIndex(MPI.ContainingType); in getClassParentId()
104 return Session.getSymbolCache().findSymbolByTypeIndex(Referent); in getTypeId()
H A DNativeTypeUDT.cpp19 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, in NativeTypeUDT() argument
21 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT()
24 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, in NativeTypeUDT() argument
26 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT()
29 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, in NativeTypeUDT() argument
32 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), in NativeTypeUDT()
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
49 Session, PdbSymbolIdField::UnmodifiedType, ShowIdFields, in dump()
94 return Session.getSymbolCache().findSymbolByTypeIndex(Class->VTableShape); in getVirtualTableShapeId()
H A DNativeEnumGlobals.cpp25 : Index(0), Session(PDBSession) { in NativeEnumGlobals()
26 GlobalsStream &GS = cantFail(Session.getPDBFile().getPDBGlobalsStream()); in NativeEnumGlobals()
27 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream()); in NativeEnumGlobals()
46 Session.getSymbolCache().getOrCreateGlobalSymbolByOffset(MatchOffsets[N]); in getChildAtIndex()
47 return Session.getSymbolCache().getSymbolById(Id); in getChildAtIndex()
H A DSymbolCache.cpp64 SymbolCache::SymbolCache(NativeSession &Session, DbiStream *Dbi) in SymbolCache() argument
65 : Session(Session), Dbi(Dbi) { in SymbolCache()
80 auto Tpi = Session.getPDBFile().getPDBTpiStream(); in createTypeEnumerator()
87 new NativeEnumTypes(Session, Types, std::move(Kinds))); in createTypeEnumerator()
93 new NativeEnumGlobals(Session, {Kind})); in createGlobalsEnumerator()
157 auto Tpi = Session.getPDBFile().getPDBTpiStream(); in findSymbolByTypeIndex()
244 return PDBSymbol::create(Session, *NRS); in getSymbolById()
263 SymbolStream &SS = cantFail(Session.getPDBFile().getPDBSymbolStream()); in getOrCreateGlobalSymbolByOffset()
298 return Session in getOrCreateCompiland()
[all...]
H A DNativeTypeTypedef.cpp7 NativeTypeTypedef::NativeTypeTypedef(NativeSession &Session, SymIndexId Id, in NativeTypeTypedef() argument
9 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id), in NativeTypeTypedef()
19 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
26 return Session.getSymbolCache().findSymbolByTypeIndex(Record.Type); in getTypeId()
H A DNativeSymbolEnumerator.cpp20 NativeSession &Session, SymIndexId Id, const NativeTypeEnum &Parent, in NativeSymbolEnumerator()
22 : NativeRawSymbol(Session, PDB_SymType::Data, Id), Parent(Parent), in NativeSymbolEnumerator()
31 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session, in dump()
35 Session, PdbSymbolIdField::LexicalParent, ShowIdFields, in dump()
38 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
19 NativeSymbolEnumerator( NativeSession &Session, SymIndexId Id, const NativeTypeEnum &Parent, codeview::EnumeratorRecord Record) NativeSymbolEnumerator() argument
H A DNativeEnumTypes.cpp26 : Matches(), Index(0), Session(PDBSession) { in NativeEnumTypes()
52 : Matches(std::move(Indices)), Index(0), Session(PDBSession) {} in NativeEnumTypes()
60 SymIndexId Id = Session.getSymbolCache().findSymbolByTypeIndex(Matches[N]); in getChildAtIndex()
61 return Session.getSymbolCache().getSymbolById(Id); in getChildAtIndex()
H A DNativeEnumModules.cpp23 : Session(PDBSession), Index(Index) {} in NativeEnumModules()
26 return Session.getSymbolCache().getNumCompilands(); in getChildCount()
31 return Session.getSymbolCache().getOrCreateCompiland(N); in getChildAtIndex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp85 DIASession::DIASession(CComPtr<IDiaSession> DiaSession) : Session(DiaSession) {} in DIASession()
88 std::unique_ptr<IPDBSession> &Session) { in createFromPdb()
109 Session.reset(new DIASession(DiaSession)); in createFromPdb()
114 std::unique_ptr<IPDBSession> &Session) { in createFromExe()
134 Session.reset(new DIASession(DiaSession)); in createFromExe()
140 bool success = (S_OK == Session->get_loadAddress(&LoadAddress)); in getLoadAddress()
145 return (S_OK == Session->put_loadAddress(Address)); in setLoadAddress()
150 if (S_OK != Session->get_globalScope(&GlobalScope)) in getGlobalScope()
163 if (S_OK == Session->addressForVA(VA, &ArgSection, &ArgOffset)) { in addressForVA()
174 if (S_OK == Session in addressForRVA()
87 createFromPdb(StringRef Path, std::unique_ptr<IPDBSession> &Session) createFromPdb() argument
113 createFromExe(StringRef Path, std::unique_ptr<IPDBSession> &Session) createFromExe() argument
378 getTableEnumerator(IDiaSession &Session) getTableEnumerator() argument
[all...]
H A DDIAEnumSymbols.cpp19 : Session(PDBSession), Enumerator(DiaEnumerator) {} in DIAEnumSymbols()
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item)); in getChildAtIndex()
33 return std::unique_ptr<PDBSymbol>(PDBSymbol::create(Session, std::move(RawSymbol))); in getChildAtIndex()
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item)); in getNext()
44 PDBSymbol::create(Session, std::move(RawSymbol))); in getNext()
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dsession.cc14 Session::Session(TransportBase* transport) in Session() function in v8::internal::wasm::gdb_server::Session
17 void Session::WaitForDebugStubEvent() { io_->WaitForDebugStubEvent(); } in WaitForDebugStubEvent()
19 bool Session::SignalThreadEvent() { return io_->SignalThreadEvent(); } in SignalThreadEvent()
21 bool Session::IsDataAvailable() const { return io_->IsDataAvailable(); } in IsDataAvailable()
23 bool Session::IsConnected() const { return connected_; } in IsConnected()
25 void Session::Disconnect() { in Disconnect()
30 bool Session::GetChar(char* ch) { in GetChar()
39 bool Session::SendPacket(Packet* pkt, bool expect_ack) { in SendPacket()
67 bool Session
[all...]
H A Dsession.h19 class V8_EXPORT_PRIVATE Session { class
21 explicit Session(TransportBase* transport);
22 Session(const Session&) = delete;
23 Session& operator=(const Session&) = delete;
63 TransportBase* io_; // Transport object not owned by the Session.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
H A DPDB.cpp24 std::unique_ptr<IPDBSession> &Session) { in loadDataForPDB()
33 return NativeSession::createFromPdb(std::move(*ErrorOrBuffer), Session); in loadDataForPDB()
37 return DIASession::createFromPdb(Path, Session); in loadDataForPDB()
44 std::unique_ptr<IPDBSession> &Session) { in loadDataForEXE()
47 return NativeSession::createFromExe(Path, Session); in loadDataForEXE()
50 return DIASession::createFromExe(Path, Session); in loadDataForEXE()
23 loadDataForPDB(PDB_ReaderType Type, StringRef Path, std::unique_ptr<IPDBSession> &Session) loadDataForPDB() argument
43 loadDataForEXE(PDB_ReaderType Type, StringRef Path, std::unique_ptr<IPDBSession> &Session) loadDataForEXE() argument
H A DPDBContext.cpp25 : DIContext(CK_PDB), Session(std::move(PDBSession)) { in PDBContext()
28 Session->setLoadAddress(ImageBase.get()); in PDBContext()
40 Session->findSymbolByAddress(Address.Address, PDB_SymType::None); in getLineInfoForAddress()
49 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Length); in getLineInfoForAddress()
55 auto SourceFile = Session->getSourceFileById(LineInfo->getSourceFileId()); in getLineInfoForAddress()
73 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Size); in getLineInfoForAddressRange()
105 Session->findSymbolByAddress(Address, PDB_SymType::Function); in getFunctionName()
113 Session->findSymbolByAddress(Address, PDB_SymType::PublicSymbol); in getFunctionName()
H A DPDBSymbolTypeFunctionSig.cpp31 : Session(PDBSession), in FunctionArgEnumerator()
36 : Session(PDBSession), Enumerator(std::move(ArgEnumerator)) {} in FunctionArgEnumerator()
46 return Session.getSymbolById(FunctionArgSymbol->getTypeId());
53 return Session.getSymbolById(FunctionArgSymbol->getTypeId());
59 const IPDBSession &Session; member in __anon24167::FunctionArgEnumerator
66 return std::make_unique<FunctionArgEnumerator>(Session, *this); in getArguments()
H A DPDBSymbolData.cpp25 return Session.findLineNumbersByRVA(RVA, Len); in getLineNumbers()
28 return Session.findLineNumbersBySectOffset( in getLineNumbers()
44 Session.addressForRVA(RVA, DataSection, DataOffset); in getCompilandId()
48 if (auto SecContribs = Session.getSectionContribs()) { in getCompilandId()
58 while (auto LexParent = Session.getSymbolById(LexParentId)) { in getCompilandId()
H A DPDBSymbolFunc.cpp33 : Session(PDBSession), Func(PDBFunc) { in FunctionArgEnumerator()
57 return Session.getConcreteSymbolById<PDBSymbolData>(
66 return Session.getConcreteSymbolById<PDBSymbolData>(Result.getSymIndexId());
73 const IPDBSession &Session; member in __anon24166::FunctionArgEnumerator
82 return std::make_unique<FunctionArgEnumerator>(Session, *this); in getArguments()
100 return Session.findLineNumbersByAddress(RawSymbol->getVirtualAddress(), in getLineNumbers()
H A DPDBSymbol.cpp52 PDBSymbol::PDBSymbol(const IPDBSession &PDBSession) : Session(PDBSession) {} in PDBSymbol()
55 : Session(Other.Session), RawSymbol(std::move(Other.RawSymbol)) {} in PDBSymbol()
182 return Session.getSymbolById(Id); in getSymbolByIdHelper()
187 const IPDBSession &Session, in dumpSymbolIdField()
204 auto Child = Session.getSymbolById(Value); in dumpSymbolIdField()
185 dumpSymbolIdField(raw_ostream &OS, StringRef Name, SymIndexId Value, int Indent, const IPDBSession &Session, PdbSymbolIdField FieldId, PdbSymbolIdField ShowFlags, PdbSymbolIdField RecurseFlags) dumpSymbolIdField() argument
/third_party/skia/third_party/externals/microhttpd/doc/examples/
H A Dsessions.c93 struct Session struct
98 struct Session *next;
138 struct Session *session;
159 static struct Session *sessions;
168 static struct Session *
171 struct Session *ret; in get_session()
194 ret = calloc (1, sizeof (struct Session)); in get_session()
228 struct Session *session,
266 add_session_cookie (struct Session *session, in add_session_cookie()
298 struct Session *sessio in serve_simple_form()
[all...]
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dpost_example.c71 struct Session struct
76 struct Session *next;
116 struct Session *session;
137 static struct Session *sessions;
146 static struct Session *
149 struct Session *ret; in get_session()
172 ret = calloc (1, sizeof (struct Session)); in get_session()
206 struct Session *session,
244 add_session_cookie (struct Session *session, in add_session_cookie()
276 struct Session *sessio in serve_simple_form()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeEnumTypes.h26 NativeEnumTypes(NativeSession &Session,
30 NativeEnumTypes(NativeSession &Session,
41 NativeSession &Session; member in llvm::pdb::NativeEnumTypes

Completed in 9 milliseconds

12345